1. e75bfde Bugfix candidate. by Guido van Rossum · 23 years ago
  2. a3c01ce SF bug #488480: integer multiply to return -max_int-1. by Tim Peters · 23 years ago
  3. 4222104 SF bug #487743: test_builtin fails on 64 bit platform. by Tim Peters · 23 years ago
  4. 6197509 PyInt_FromString(), int_repr(), int_oct(), int_hex(): Conversion of by Barry Warsaw · 23 years ago
  5. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  6. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  7. 73a1dfe More bug 460020. When I is a subclass of int, disable the +I(whatever), by Tim Peters · 23 years ago
  8. dea6ef9 Replace a few places where X->ob_type was compared to &PyXXX_Type with by Guido van Rossum · 23 years ago
  9. 4c483c4 Make the error msgs in our pow() implementations consistent. by Tim Peters · 23 years ago
  10. e2a6000 Change long/long true division to return as many good bits as it can; by Tim Peters · 23 years ago
  11. 9c1d7fd Move int_true_divide next to the other division routines. by Tim Peters · 23 years ago
  12. 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 23 years ago
  13. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  14. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 23 years ago
  15. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  16. 0b13116 err_ovf(): only raise OverflowError when OverflowWarning was raised. by Guido van Rossum · 23 years ago
  17. 31960db int_pow(): Repair typo when passing on to float pow (the 2nd argument was by Tim Peters · 23 years ago
  18. e27f795 Change all case where we used to raise OverflowError to issue a by Guido van Rossum · 23 years ago
  19. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  20. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  21. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  22. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 23 years ago
  23. b82fedc On int to the negative integral power, let float handle it instead of by Guido van Rossum · 23 years ago
  24. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 23 years ago
  25. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  26. 3968e4c Rich comparisons fall-out: by Guido van Rossum · 24 years ago
  27. 139e72a Make int a new style number type. Sequence repeat is now done here now as well. by Neil Schemenauer · 24 years ago
  28. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  29. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  30. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 24 years ago
  31. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  32. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  33. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  34. a2f5511 ANSI-fication of the sources. by Fred Drake · 24 years ago
  35. 7d3a511 Cray J90 fixes for long ints. by Tim Peters · 24 years ago
  36. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  37. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  38. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  39. c18a6f4 Replace PyErr_BadArgument() error in PyInt_AsLong() with "an integer by Guido van Rossum · 24 years ago
  40. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  41. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  42. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  43. fb4574e In response to one particular complaint on edu-sig, change some error by Guido van Rossum · 24 years ago
  44. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  45. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  46. e13ff2e Patch by Tim Peters fixing PR#88: by Guido van Rossum · 25 years ago
  47. 51288bc Fix a problem with Vladimir's PyInt_Fini code: clear the free list; if by Guido van Rossum · 25 years ago
  48. 3fce883 Vladimir has restructured his code somewhat so that the blocks are now by Guido van Rossum · 25 years ago
  49. da084ed Patch by Vladimir Marangoz to allow freeing of the allocated blocks of by Guido van Rossum · 25 years ago
  50. fbbd57e Added _Fini() routines to free up some memory by Guido van Rossum · 27 years ago
  51. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  52. 6f72f97 Increased buffer sizes used by hex() and oct() -- on 64-bit or 128-bit by Guido van Rossum · 28 years ago
  53. ebee025 Changed hex() and oct() again, to never emit a '-' sign. by Guido van Rossum · 28 years ago
  54. 80dd9b6 Subtle change to hex/oct formatting so the largest negative number by Guido van Rossum · 28 years ago
  55. 541cdd8 Fix overflow test for multiply to catch some cases it missed. by Guido van Rossum · 28 years ago
  56. 9478dd4 Fix core dump from pow(x,y,0). Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  57. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  58. c206c76 fix memory leak and null pointer dereference by Guido van Rossum · 30 years ago
  59. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  60. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  61. bf8c0e3 mods by Andrew Kuchling to implement by Guido van Rossum · 30 years ago
  62. 2e1d433 Added getmaxint() so sys can initialize sys.maxint. Added Makefile.in. by Guido van Rossum · 31 years ago
  63. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  64. 72481a3 Changes to make range checks portable to 64-bit machines. by Guido van Rossum · 31 years ago
  65. 842d2cc intobject.c: Save references to small integers, so that they can be by Sjoerd Mullender · 31 years ago
  66. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  67. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  68. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  69. e537240 * Changed many files to use mkvalue() instead of newtupleobject(). by Guido van Rossum · 31 years ago
  70. 1899c2e Made builtins int(), long(), float(), oct() and hex() more generic. by Guido van Rossum · 32 years ago
  71. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  72. 719f5fa lint fix by Guido van Rossum · 32 years ago
  73. 2b16a6f Make / and % do the same as divmod. by Guido van Rossum · 33 years ago
  74. f3b351f Different shift implementation. by Guido van Rossum · 33 years ago
  75. 3a62845 Improved exceptions. by Guido van Rossum · 33 years ago
  76. 7928cd7 Added shift and mask ops. by Guido van Rossum · 33 years ago
  77. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  78. 0bff015 Added nonzero test by Guido van Rossum · 33 years ago
  79. 0046695 Added divmod and abs, fixed negative powers by Guido van Rossum · 33 years ago
  80. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  81. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  82. abbda16 Fix zero division checks: return if it occurs! by Guido van Rossum · 34 years ago
  83. 5c52b6a CHanged errors somewhat. by Guido van Rossum · 34 years ago
  84. 165e67e New error handling. by Guido van Rossum · 34 years ago
  85. 85a5fbb Initial revision by Guido van Rossum · 34 years ago