1. a7dc949 ignore AttributeErrors for classic classes by Benjamin Peterson · 16 years ago
  2. 784d455 *sigh* deal with instances correctly by Benjamin Peterson · 16 years ago
  3. 0a32f9c can't handle classic classes here by Benjamin Peterson · 16 years ago
  4. 3f3d36b ignore classic classes by Benjamin Peterson · 16 years ago
  5. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 16 years ago
  6. 809e225 lookup __reversed__ correctly as a special method by Benjamin Peterson · 16 years ago
  7. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 16 years ago
  8. 1aa4700 PyCode_NewEmpty: by Jeffrey Yasskin · 16 years ago
  9. 3a9930d this is now a bound method by Benjamin Peterson · 16 years ago
  10. 399e4c4 add _PyObject_LookupSpecial to handle fetching special method lookup by Benjamin Peterson · 16 years ago
  11. a985a3a Issue #5920: Changed format.__float__ and complex.__float__ to use a precision of 12 when using the empty presentation type. This more closely matches str()'s behavior and reduces surprises when adding alignment flags to an empty format string. Patch by Mark Dickinson. by Eric Smith · 16 years ago
  12. cecdc9c Remove unused variable. by Georg Brandl · 16 years ago
  13. ba68a99 #5929: fix signedness warning. by Georg Brandl · 16 years ago
  14. 7ba8e1c Fix issue 5890: (property subclass shadows __doc__ string) by inserting by R. David Murray · 16 years ago
  15. 653dece Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. by Antoine Pitrou · 16 years ago
  16. 342c8db There's no %A in Python 2.x! by Walter Dörwald · 16 years ago
  17. ed960ac Issue #5108: Handle %s like %S and %R in PyUnicode_FromFormatV(): Call by Walter Dörwald · 16 years ago
  18. 777e4ff Eliminate some locale-dependent calls to isspace and tolower. by Mark Dickinson · 16 years ago
  19. 85e269b Remove unnecessary uses of context in PyGetSetDef. See issue #5880. by Mark Dickinson · 16 years ago
  20. d4b5c98 Remove unnecessary use of context for long getters. (Related to issue #5880). by Mark Dickinson · 16 years ago
  21. 27f204d Keep py3k and trunk code in sync. by Eric Smith · 16 years ago
  22. ca87fa5 #5889: remove comma at the end of a list that some C compilers don't like. by Georg Brandl · 16 years ago
  23. 9139cc6 Issue #1588: Add complex.__format__. by Eric Smith · 16 years ago
  24. df108ca Remove format_float and use _PyOS_double_to_string instead. by Mark Dickinson · 16 years ago
  25. cac7af6 Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. by Eric Smith · 16 years ago
  26. 6d6b220 Backport r71967 changes from py3k to trunk. by Mark Dickinson · 16 years ago
  27. 944c6ae Reset errno before both calls to PyOS_ascii_strtod, not just one. by Mark Dickinson · 16 years ago
  28. 99f2779 Issue #4971: Fix titlecase for characters that are their own by Martin v. Löwis · 16 years ago
  29. 068f065 Issue #5835, deprecate PyOS_ascii_formatd. by Eric Smith · 16 years ago
  30. 5d98ec7 Issue #5828 (Invalid behavior of unicode.lower): Fixed bogus logic in by Walter Dörwald · 16 years ago
  31. 0a6501b Fix typo in complex parsing code; expand tests. by Mark Dickinson · 16 years ago
  32. 5083dc5 fix a segfault when setting __class__ in __del__ #5283 by Benjamin Peterson · 16 years ago
  33. 90d47cb Fix missing 'return NULL' by Mark Dickinson · 16 years ago
  34. 95bc980 Issue #5816: by Mark Dickinson · 16 years ago
  35. ebafbb7 Fixed issue 5782: formatting with commas didn't work if no specifier type code was given. by Eric Smith · 16 years ago
  36. aca19e6 Backport of some of the work in r71665 to trunk. This reworks much of by Eric Smith · 16 years ago
  37. 6736cf8 Issue #3166: Make long -> float (and int -> float) conversions by Mark Dickinson · 16 years ago
  38. 8cfa8e6 make errors consistent by Benjamin Peterson · 16 years ago
  39. 308c6ba initialize weakref some weakref types by Benjamin Peterson · 16 years ago
  40. 01c6e6f many more types to initialize (I had to expose some of them) by Benjamin Peterson · 16 years ago
  41. 5ce7375 initalize -> initialize by Benjamin Peterson · 16 years ago
  42. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 16 years ago
  43. d672001 rename internal bytes_ functions to bytearray by Benjamin Peterson · 16 years ago
  44. f5fd523 "not subscriptable" should be a bit more understandable than "unsubscriptable". by Georg Brandl · 16 years ago
  45. 99d36f1 call __float__ on str subclasses #5759 by Benjamin Peterson · 16 years ago
  46. 8c02324 Fixed incorrect object passed into format_float_internal(). This was resulting in a conversion being done twice. by Eric Smith · 16 years ago
  47. 517cfdc Whitespace normalization. by Georg Brandl · 16 years ago
  48. d3eaa74 #5615: make it possible to configure --without-threads again. by Georg Brandl · 16 years ago
  49. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 16 years ago
  50. 48e3fd2 sys.long_info attributes should be ints, not longs by Mark Dickinson · 16 years ago
  51. 42827e9 Fix a wrong struct field assignment (docstring as closure). by Georg Brandl · 16 years ago
  52. d4814bf Issue #532631: Apply floatformat changes to unicodeobject.c by Mark Dickinson · 16 years ago
  53. 174e909 Issue #532631: Add paranoid check to avoid potential buffer overflow by Mark Dickinson · 16 years ago
  54. 2e648ec Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test by Mark Dickinson · 16 years ago
  55. 1fba624 The tracking statistics were actually too pessimistic by Antoine Pitrou · 16 years ago
  56. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 16 years ago
  57. 0b666bf Issue #5512: speed up the long division algorithm for Python longs. by Mark Dickinson · 16 years ago
  58. 52a3492 There is no macro named SIZEOF_SSIZE_T. Should use SIZEOF_SIZE_T instead. by Hirokazu Yamamoto · 16 years ago
  59. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
  60. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 16 years ago
  61. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 16 years ago
  62. 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 · 16 years ago
  63. 1706c64 fix tuple.index() error message #5495 by Benjamin Peterson · 16 years ago
  64. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 16 years ago
  65. 9c1f7b2 fix funky indentation by Benjamin Peterson · 16 years ago
  66. a3e6c97 Fixed memory leak on failure. by Hirokazu Yamamoto · 16 years ago
  67. b646487 Replace long with twodigits, to avoid depending on sizeof(digit) < sizeof(long) by Mark Dickinson · 16 years ago
  68. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  69. 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 · 16 years ago
  70. bcf6b18 A few more minor fixes in longobject.c by Mark Dickinson · 16 years ago
  71. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
  72. 9e8a250 Fix compiler warning (gcc) by Antoine Pitrou · 17 years ago
  73. 76a4b89 Issue #5186: Reduce hash collisions for objects with no __hash__ method by by Antoine Pitrou · 17 years ago
  74. cbb4958 Fix warnings GCC emits where the argument of PyErr_Format is a single variable. by Georg Brandl · 17 years ago
  75. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 17 years ago
  76. 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 · 17 years ago
  77. 10fe877 Issue #789290: make sure that hash(2**63) == hash(2.**63) on 64-bit by Mark Dickinson · 17 years ago
  78. b91d2f5 Remove redundant assignment in _PyObject_LengthHint by Mark Dickinson · 17 years ago
  79. 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 · 17 years ago
  80. d6fc262 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 17 years ago
  81. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 17 years ago
  82. 1c5d21d fix indentation in comment by Benjamin Peterson · 17 years ago
  83. be1399e fix indentation; looks like all I managed to do the first time is make things uglier by Benjamin Peterson · 17 years ago
  84. d17fec7 fix indentation by Benjamin Peterson · 17 years ago
  85. 857ce15 completely detabify unicodeobject.c by Benjamin Peterson · 17 years ago
  86. a0eae03 Fix comment. by Mark Dickinson · 17 years ago
  87. 6ffa4a2 Fix undefined behaviour (left shift of negative value) in long_hash. Also, by Mark Dickinson · 17 years ago
  88. 1afe6dd No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large enough. by Mark Dickinson · 17 years ago
  89. 1e234e8 Fixed compile error on windows. by Hirokazu Yamamoto · 17 years ago
  90. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 17 years ago
  91. ff84aa8 Issue #4393: fix 3 classes of potential portability problems in longobject.c: by Mark Dickinson · 17 years ago
  92. e548d24 fix url by Benjamin Peterson · 17 years ago
  93. 59ce042 #4077: No need to append \n when calling Py_FatalError by Amaury Forgeot d'Arc · 17 years ago
  94. bd55c52 #4930: Slightly cleaner (and faster) code in type creation: by Amaury Forgeot d'Arc · 17 years ago
  95. c2f0221 Issue #4935: The overflow checking code in the expandtabs() method common by Antoine Pitrou · 17 years ago
  96. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 17 years ago
  97. b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 17 years ago
  98. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 17 years ago
  99. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
  100. fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago