Commit 9df7ae83 authored by Malthe Borch's avatar Malthe Borch

Python 3.3 compatibility.

parent 5a4aded1
......@@ -4,7 +4,7 @@ Changes
1.2.1 (unreleased)
------------------
- ...
- Python 3.3 compatibility.
1.2.0 (2011-12-05)
------------------
......
......@@ -78,7 +78,10 @@ else: # pragma: no cover
if PY3:
from threading import _get_ident as get_thread_ident
try:
from threading import get_ident as get_thread_ident
except ImportError:
from threading import _get_ident as get_thread_ident
else:
from thread import get_ident as get_thread_ident
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment