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
d7ce1b5d
Commit
d7ce1b5d
authored
May 02, 2013
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Python 3.2.
parent
5986a4db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
CHANGES.txt
CHANGES.txt
+5
-0
setup.py
setup.py
+1
-0
src/ZEO/_compat.py
src/ZEO/_compat.py
+6
-1
No files found.
CHANGES.txt
View file @
d7ce1b5d
CHANGES
=======
Unreleased
----------
- Added support for Python 3.2 / 3.3.
4.0.0a1 (2012-11-19)
--------------------
...
...
setup.py
View file @
d7ce1b5d
...
...
@@ -28,6 +28,7 @@ Programming Language :: Python
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: Implementation :: CPython
Topic :: Database
...
...
src/ZEO/_compat.py
View file @
d7ce1b5d
...
...
@@ -16,6 +16,7 @@
import
sys
PY3
=
sys
.
version_info
[
0
]
>=
3
PY32
=
sys
.
version_info
[:
2
]
==
(
3
,
2
)
if
PY3
:
from
pickle
import
Pickler
,
Unpickler
as
_Unpickler
,
dump
,
dumps
,
loads
...
...
@@ -39,7 +40,11 @@ from ZODB._compat import BytesIO
if
PY3
:
import
_thread
as
thread
from
threading
import
get_ident
if
PY32
:
from
threading
import
_get_ident
as
get_ident
else
:
from
threading
import
get_ident
else
:
...
...
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