Closed GoogleCodeExporter closed 9 years ago
I am on a mac also. This is a non issue as the int() function will auto
convert to longs when needed.
[jrossi@jeremy-rossi]~/src/% /opt/local/bin/python
Python 2.6.1 (r261:67515, Mar 11 2009, 18:51:29)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> int('3129030209')
3129030209L
>>> sys.maxint
2147483647
[jrossi@jeremy-rossi]~/src/% /usr/bin/python
Python 2.5.1 (r251:54863, Feb 6 2009, 19:02:12)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> int('3129030209')
3129030209L
>>> sys.maxint
2147483647
>>>
I have been using my version of python-twitter live now and am not getting any
problem due to twitpocalypse.
Original comment by jeremyro...@fastmail.fm
on 4 Aug 2009 at 6:36
Fixed in r181 and r182 for the trunk and -dclinton branches respectively.
Please
verify.
Original comment by dclinton
on 4 Aug 2009 at 6:51
Original issue reported on code.google.com by
dougire...@gmail.com
on 4 Aug 2009 at 5:49