mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-21 05:43:16 -07:00
Python 3: Make long = int
This commit is contained in:
parent
ec2fc8d538
commit
5903538ae5
1 changed files with 3 additions and 0 deletions
|
@ -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']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue