Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
763fd763
Commit
763fd763
authored
May 02, 2013
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid deprecation warning under Python >= 2.7.
parent
d7ce1b5d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/ZEO/zrpc/trigger.py
src/ZEO/zrpc/trigger.py
+2
-2
No files found.
src/ZEO/zrpc/trigger.py
View file @
763fd763
...
@@ -145,10 +145,10 @@ if os.name == 'posix':
...
@@ -145,10 +145,10 @@ if os.name == 'posix':
r
,
self
.
trigger
=
os
.
pipe
()
r
,
self
.
trigger
=
os
.
pipe
()
asyncore
.
file_dispatcher
.
__init__
(
self
,
r
,
map
)
asyncore
.
file_dispatcher
.
__init__
(
self
,
r
,
map
)
if
self
.
fd
!=
r
:
if
self
.
socket
.
fd
!=
r
:
# Starting in Python 2.6, the descriptor passed to
# Starting in Python 2.6, the descriptor passed to
# file_dispatcher gets duped and assigned to
# file_dispatcher gets duped and assigned to
# self.fd. This breals the instantiation semantics and
# self.
socket.
fd. This breals the instantiation semantics and
# is a bug imo. I dount it will get fixed, but maybe
# is a bug imo. I dount it will get fixed, but maybe
# it will. Who knows. For that reason, we test for the
# it will. Who knows. For that reason, we test for the
# fd changing rather than just checking the Python version.
# fd changing rather than just checking the Python version.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment