1. 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 15 years ago
  2. 8cfa8e6 make errors consistent by Benjamin Peterson · 15 years ago
  3. 308c6ba initialize weakref some weakref types by Benjamin Peterson · 15 years ago
  4. 01c6e6f many more types to initialize (I had to expose some of them) by Benjamin Peterson · 15 years ago
  5. 5ce7375 initalize -> initialize by Benjamin Peterson · 15 years ago
  6. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 15 years ago
  7. d672001 rename internal bytes_ functions to bytearray by Benjamin Peterson · 15 years ago
  8. f5fd523 "not subscriptable" should be a bit more understandable than "unsubscriptable". by Georg Brandl · 15 years ago
  9. 99d36f1 call __float__ on str subclasses #5759 by Benjamin Peterson · 15 years ago
  10. 8c02324 Fixed incorrect object passed into format_float_internal(). This was resulting in a conversion being done twice. by Eric Smith · 15 years ago
  11. 517cfdc Whitespace normalization. by Georg Brandl · 15 years ago
  12. d3eaa74 #5615: make it possible to configure --without-threads again. by Georg Brandl · 15 years ago
  13. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  14. 48e3fd2 sys.long_info attributes should be ints, not longs by Mark Dickinson · 15 years ago
  15. 42827e9 Fix a wrong struct field assignment (docstring as closure). by Georg Brandl · 15 years ago
  16. d4814bf Issue #532631: Apply floatformat changes to unicodeobject.c by Mark Dickinson · 15 years ago
  17. 174e909 Issue #532631: Add paranoid check to avoid potential buffer overflow by Mark Dickinson · 15 years ago
  18. 2e648ec Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test by Mark Dickinson · 15 years ago
  19. 1fba624 The tracking statistics were actually too pessimistic by Antoine Pitrou · 15 years ago
  20. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 15 years ago
  21. 0b666bf Issue #5512: speed up the long division algorithm for Python longs. by Mark Dickinson · 15 years ago
  22. 52a3492 There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead. by Hirokazu Yamamoto · 15 years ago
  23. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  24. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 15 years ago
  25. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 15 years ago
  26. ed4cefb Fix a small nit in the error message if bool() falls back on __len__ and it returns the wrong type: it would tell the user that __nonzero__ should return bool or int. by Georg Brandl · 15 years ago
  27. 1706c64 fix tuple.index() error message #5495 by Benjamin Peterson · 15 years ago
  28. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 15 years ago
  29. 9c1f7b2 fix funky indentation by Benjamin Peterson · 15 years ago
  30. a3e6c97 Fixed memory leak on failure. by Hirokazu Yamamoto · 15 years ago
  31. b646487 Replace long with twodigits, to avoid depending on sizeof(digit) < sizeof(long) by Mark Dickinson · 15 years ago
  32. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 15 years ago
  33. e9fb686 Issue #5247: Improve error message when unknown format codes are used when using str.format() with str, unicode, long, int, and float arguments. by Eric Smith · 15 years ago
  34. bcf6b18 A few more minor fixes in longobject.c by Mark Dickinson · 15 years ago
  35. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 15 years ago
  36. 9e8a250 Fix compiler warning (gcc) by Antoine Pitrou · 16 years ago
  37. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 16 years ago
  38. cbb4958 Fix warnings GCC emits where the argument of PyErr_Format is a single variable. by Georg Brandl · 16 years ago
  39. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 16 years ago
  40. 6a743d3 Issue 4804. Add a function to test the validity of file descriptors on Windows, and stop using global runtime settings to silence the warnings / assertions. by Kristján Valur Jónsson · 16 years ago
  41. 10fe877 Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit by Mark Dickinson · 16 years ago
  42. b91d2f5 Remove redundant assignment in _PyObject_LengthHint by Mark Dickinson · 16 years ago
  43. fd4c872 issue 4804: Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid. by Kristján Valur Jónsson · 16 years ago
  44. d6fc262 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 16 years ago
  45. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
  46. 1c5d21d fix indentation in comment by Benjamin Peterson · 16 years ago
  47. be1399e fix indentation; looks like all I managed to do the first time is make things uglier by Benjamin Peterson · 16 years ago
  48. d17fec7 fix indentation by Benjamin Peterson · 16 years ago
  49. 857ce15 completely detabify unicodeobject.c by Benjamin Peterson · 16 years ago
  50. a0eae03 Fix comment. by Mark Dickinson · 16 years ago
  51. 6ffa4a2 Fix undefined behaviour (left shift of negative value) in long_hash. Also, by Mark Dickinson · 16 years ago
  52. 1afe6dd No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough. by Mark Dickinson · 16 years ago
  53. 1e234e8 Fixed compile error on windows. by Hirokazu Yamamoto · 16 years ago
  54. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 16 years ago
  55. ff84aa8 Issue #4393: fix 3 classes of potential portability problems in longobject.c: by Mark Dickinson · 16 years ago
  56. e548d24 fix url by Benjamin Peterson · 16 years ago
  57. 59ce042 #4077: No need to append \n when calling Py_FatalError by Amaury Forgeot d'Arc · 16 years ago
  58. bd55c52 #4930: Slightly cleaner (and faster) code in type creation: by Amaury Forgeot d'Arc · 16 years ago
  59. c2f0221 Issue #4935: The overflow checking code in the expandtabs() method common by Antoine Pitrou · 16 years ago
  60. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 16 years ago
  61. b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 16 years ago
  62. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 16 years ago
  63. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 16 years ago
  64. fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 16 years ago
  65. 6425a2f Backport r67974: by Georg Brandl · 16 years ago
  66. 034e08c Remove unnecessary casts related to unicode_decode_call_errorhandler. by Alexandre Vassalotti · 16 years ago
  67. f09925d add py3k warnings to frame.f_exc_* by Benjamin Peterson · 16 years ago
  68. 1a70798 Issue #3439: add bit_length method to int and long. by Mark Dickinson · 16 years ago
  69. 3538a31 #3632: the "pyo" macro from gdbinit can now run when the GIL is released. by Amaury Forgeot d'Arc · 16 years ago
  70. ae5bece Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 16 years ago
  71. 826f3fe Issue #4445: save 3 bytes (on average, on a typical machine) per by Mark Dickinson · 16 years ago
  72. 7989a4d Backport r67478 by Raymond Hettinger · 16 years ago
  73. 2a1fd05 Fix a small typo in docstring by Amaury Forgeot d'Arc · 16 years ago
  74. 46cc6d1 make sure that bytearray methods return a new bytearray even if there is no change by Benjamin Peterson · 16 years ago
  75. 273c233 when __getattr__ is a descriptor, call it correctly; fixes #4230 by Benjamin Peterson · 16 years ago
  76. d78b9dc #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key. by Amaury Forgeot d'Arc · 16 years ago
  77. a412717 Punctuation fix; expand dict.update docstring to be clearer by Andrew M. Kuchling · 16 years ago
  78. efeb43e Docstring change for *partition: use same tense as other docstrings. by Andrew M. Kuchling · 16 years ago
  79. d810cdf Docstring changes: Specify exceptions raised by Andrew M. Kuchling · 16 years ago
  80. b15d6fb Docstring change: Specify exception raised by Andrew M. Kuchling · 16 years ago
  81. bd7c4ca Use correct capitalization of NaN by Andrew M. Kuchling · 16 years ago
  82. d7b7dde Mention exception in docstring by Andrew M. Kuchling · 16 years ago
  83. 32a66a0 Fixed a couple more C99 comments and one occurence of inline. by Christian Heimes · 16 years ago
  84. 25584b1 Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/python-and-bragging-about-c89/ by Christian Heimes · 16 years ago
  85. fc5ea39 #3967: Correct a crash in count() and find() methods of string-like objects. by Amaury Forgeot d'Arc · 16 years ago
  86. 17617a0 #3965: on Windows, open() crashes if the filename or the mode is invalid, by Amaury Forgeot d'Arc · 16 years ago
  87. e86b07c Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. by Martin v. Löwis · 16 years ago
  88. 8c47cab should use macro'ed symbols not direct by Andrew MacIntyre · 16 years ago
  89. 9fa5a28 Issue #3642: Suppress warning in obmalloc when size_t is by Martin v. Löwis · 16 years ago
  90. 24329ba Issue #3811: The Unicode database was updated to 5.1. by Martin v. Löwis · 16 years ago
  91. 97179b0 Fix #3634 invalid return value from _weakref.ref(Exception).__init__ by Benjamin Peterson · 16 years ago
  92. 9806407 Fix varname in docstring. #3822. by Georg Brandl · 16 years ago
  93. d3ffb89 #3777: long(4.2) returned an int, and broke backward compatibility. by Amaury Forgeot d'Arc · 16 years ago
  94. 3571fbf Issue #3751: str.rpartition would perform a left-partition when called with by Amaury Forgeot d'Arc · 16 years ago
  95. d4ae97b #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an by Antoine Pitrou · 16 years ago
  96. 0668c62 Issue #2534: speed up isinstance() and issubclass() by 50-70%, so as to by Antoine Pitrou · 16 years ago
  97. 712ee92 generate py3k warnings on __getslice__, __delslice__, and __setslice__ by Benjamin Peterson · 16 years ago
  98. 18aa388 Fix: by Neal Norwitz · 16 years ago
  99. 7d4c317 Silenced compiler warning by Christian Heimes · 16 years ago
  100. fb1813c Changed type of numarenas from uint to size_t to silence a GCC warning on 64bit OSes. Reviewed by Benjamin Peterson. by Christian Heimes · 16 years ago