1. 7d3a511 Cray J90 fixes for long ints. by Tim Peters · 24 years ago
  2. 43f04a3 The tail end of x_sub implicitly assumed that an unsigned short by Tim Peters · 24 years ago
  3. 9ace6bc Got RID of redundant coercions in longobject.c (as spotted by Greg by Tim Peters · 24 years ago
  4. 9f688bf Some cleanup of longs in prepartion for Cray J90 fixes: got by Tim Peters · 24 years ago
  5. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  6. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  7. 4c7fdfc Trent Mick <trentm@ActiveState.com>: by Fred Drake · 24 years ago
  8. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  9. ba71a24 Simple optimization by Christian Tismer, who gives credit to Lenny by Guido van Rossum · 24 years ago
  10. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  11. 121ee27 long_format(): Now takes a third parameter, addL; iff true, a by Fred Drake · 25 years ago
  12. 2c7b8fe Fix PR#66. Solution: add error checking around l_divmod() calls in long_pow(). by Guido van Rossum · 25 years ago
  13. 1a23c24 Patch by Tim Peters fixing PR#89: by Guido van Rossum · 25 years ago
  14. b5cebfe PyLong_FromString(): Nailed a small memory leak. In the str==start by Barry Warsaw · 25 years ago
  15. cdd9ae0 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  16. 3886026 Remove unreachable code. (Sjoerd) by Guido van Rossum · 26 years ago
  17. 78694d9 Patches from Greg Stein to support 'P' format in struct module's by Guido van Rossum · 26 years ago
  18. 065ce5a Undo victim of careless global substitute ("long long_hash" was by Guido van Rossum · 26 years ago
  19. 3293b07 Patch by Mark Hammond to support 64-bit ints on MS platforms. by Guido van Rossum · 26 years ago
  20. bd3a527 Two patches by Jason Harper: by Guido van Rossum · 26 years ago
  21. 1a8791e Changes for BeOS, QNX and long long, by Chris Herborth. by Guido van Rossum · 26 years ago
  22. ac6a37a Fix a potential problem in PyLong_FromString(): could fall through the by Guido van Rossum · 26 years ago
  23. e676297 Add check in long-to-int conversion for at least one digit. by Guido van Rossum · 26 years ago
  24. f753181 Subject: Buglet in PyLong_AsLong by Guido van Rossum · 26 years ago
  25. 1109fbc Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  26. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  27. 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 27 years ago
  28. f2e499b New long_lshift, without restriction on size of shift count, by Tim Peters. by Guido van Rossum · 27 years ago
  29. 45b8391 New form of PyFPE_END_PROTECT macro. by Guido van Rossum · 27 years ago
  30. 09e6ad0 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  31. 53756b1 Added PyLong_FromUnsignedLong() and PyLong_AsUnsignedLong(). by Guido van Rossum · 28 years ago
  32. 472c04f Fix newlongobject so it will work for 64-bit as well as 32-bit hardware by Guido van Rossum · 28 years ago
  33. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  34. 687ec18 changes for MPW by Guido van Rossum · 29 years ago
  35. 9fa2c11 use Py_CHARMASK; and don't check for neg. float to the float power here by Guido van Rossum · 29 years ago
  36. 3535f6e long_scan is no longer used by Guido van Rossum · 30 years ago
  37. c206c76 fix memory leak and null pointer dereference by Guido van Rossum · 30 years ago
  38. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  39. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  40. 03093a2 * Include/classobject.h, Objects/classobject.c, Python/ceval.c: by Guido van Rossum · 30 years ago
  41. eb1fafc New patches by Andrew to fix various problems Add cast for Lance by Guido van Rossum · 30 years ago
  42. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  43. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  44. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  45. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  46. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 31 years ago
  47. 0b0db8e Added separate main program for the Mac: macmain.c by Guido van Rossum · 31 years ago
  48. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  49. 1899c2e Made builtins int(), long(), float(), oct() and hex() more generic. by Guido van Rossum · 32 years ago
  50. 2c47542 oct(0) should return '0', not '00' by Guido van Rossum · 32 years ago
  51. e6eefc2 * classobject.[ch], {float,long,int}object.c, bltinmodule.c: by Guido van Rossum · 32 years ago
  52. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  53. 8b27d92 Lint stuff (involves casts, yuck!) by Guido van Rossum · 32 years ago
  54. e32e014 Add prototypes. Change / and % to match divmod. by Guido van Rossum · 33 years ago
  55. 4c260ff Changed to 2's complement bitwise ops. Got rid of ZABS etc. by Guido van Rossum · 33 years ago
  56. afbb8db Fixed bug in long masking ops. by Guido van Rossum · 33 years ago
  57. 87e7ea7 Use new exceptions. by Guido van Rossum · 33 years ago
  58. c6913e7 Made the sign use one's complement; implemented shifting and masking operators. by Guido van Rossum · 33 years ago
  59. 3d3037d Changed convert to add '0' or '0x' prefix for oct/hex. by Guido van Rossum · 33 years ago
  60. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  61. 149e9ea Added dnewlongobject(), function to convert double to long int. by Guido van Rossum · 33 years ago
  62. c7ec9c9 Fix off-by-one error in long_repr. Implement long_pow. by Guido van Rossum · 33 years ago
  63. 23d6f0e Many small changes by Guido van Rossum · 33 years ago
  64. edcc38a Initial revision by Guido van Rossum · 33 years ago