Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cc-node
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
cc-node
Commits
21924d76
Commit
21924d76
authored
12 years ago
by
Anael Beutot
Browse files
Options
Downloads
Patches
Plain Diff
Add bool states for MainLoop.
parent
8eff778e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ccnode/node.py
+8
-0
8 additions, 0 deletions
ccnode/node.py
with
8 additions
and
0 deletions
ccnode/node.py
+
8
−
0
View file @
21924d76
...
...
@@ -193,6 +193,14 @@ class MainLoop(object):
# plugins
self
.
registered_plugins
=
set
()
@property
def
rpc_connected
(
self
):
return
self
.
rpc_con
is
not
None
@property
def
rpc_authenticated
(
self
):
return
self
.
rpc_connected
and
self
.
connect
is
None
# RPC handlers definitions
@threadless
def
sub_tags
(
self
,
sub_id
,
tags
=
None
,
noresolve_tags
=
None
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment