Python 3: Make long = int

This commit is contained in:
Labrys 2016-06-04 23:34:56 -04:00
commit 5903538ae5

View file

@ -21,7 +21,10 @@ same rencode version throughout your project.
import struct
from threading import Lock
from six import PY3
if PY3:
long = int
__version__ = '1.0.1'
__all__ = ['dumps', 'loads']