1. a3534a6 Issue #1587: Added instancemethod wrapper for PyCFunctions. The Python C API by Christian Heimes · 17 years ago
  2. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  3. 827b35c Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. by Christian Heimes · 17 years ago
  4. 0ded5b5 Fixed issue #1564: The set implementation should special-case PyUnicode instead of PyString by Christian Heimes · 17 years ago
  5. 1101940 typo by Skip Montanaro · 17 years ago
  6. 9bbac50 Fixed a bug found by Marcin Kowalczyk by Christian Heimes · 17 years ago
  7. 895627f Merged revisions 59407-59422 via svnmerge from by Christian Heimes · 17 years ago
  8. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  9. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  10. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  11. 79a082b Fix issue #1553: An errornous __length_hint__ can make list() raise a by Alexandre Vassalotti · 17 years ago
  12. a74169b Remove a few tab characters introduced by r59314. by Alexandre Vassalotti · 17 years ago
  13. 09121e8 Issue #1283: Allow any iterable of integers to be passed to bytearray.extend(). by Alexandre Vassalotti · 17 years ago
  14. e7fc50f Add an errors parameter to open() and TextIOWrapper() to specify error handling. by Guido van Rossum · 17 years ago
  15. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  16. f929077 Reverting last commit. I had some staled data from an attempted svnmerge in my local sandbox by Christian Heimes · 17 years ago
  17. e69c320 Patch #1537 from Chad Austin by Christian Heimes · 17 years ago
  18. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  19. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  20. 9385266 Merged revisions 59245-59254 via svnmerge from by Christian Heimes · 17 years ago
  21. f77c929 Rename the internal name of dictproxy -> dict_proxy, by Guido van Rossum · 17 years ago
  22. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  23. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  24. 2fd4f37 Merged revisions 59212-59225 via svnmerge from by Guido van Rossum · 17 years ago
  25. 043c8f8 Removed iter* methods from dictproxy. by Christian Heimes · 17 years ago
  26. 69a7963 Merged revisions 59202-59211 via svnmerge from by Christian Heimes · 17 years ago
  27. f83be4e Added view and iterator types to collections / _abcoll by Christian Heimes · 17 years ago
  28. ceee077 #1496: revert str.translate() to the old version, and add by Georg Brandl · 17 years ago
  29. ff73795 Removed the API to create unbound methods and simplified the API for bound methods. The signature is PyMethod_New(func, instance). by Christian Heimes · 17 years ago
  30. 0d3fb8a Merged revisions 59107-59186 via svnmerge from by Guido van Rossum · 17 years ago
  31. 4a22b5d Patch from Georg Brandl and me for #1493 Remove unbound method objects by Christian Heimes · 17 years ago
  32. 0d84d13 Remove unused variable. by Georg Brandl · 17 years ago
  33. 5fb8eb9 Use proper API for iter.__next__(). by Georg Brandl · 17 years ago
  34. 5914323 Cleanup Removed unreferenced variable by Christian Heimes · 17 years ago
  35. e165727 Just inline a function, and discover that it can only raise an exception. by Amaury Forgeot d'Arc · 17 years ago
  36. f386311 Removed blocks from several functions in unicodeobject and stringobject where a PyString function was still checking for PyUnicode or the other way around. by Christian Heimes · 17 years ago
  37. 4d279c1 Typo in bytes.replace(): the buffer interface was always used. by Amaury Forgeot d'Arc · 17 years ago
  38. 39599dc PyString_AsString is permissive and accepts unicode strings. by Amaury Forgeot d'Arc · 17 years ago
  39. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  40. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  41. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  42. bce52be Fixed some build issues and updated docs. by Christian Heimes · 17 years ago
  43. b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 17 years ago
  44. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  45. a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 17 years ago
  46. 58cb1b8 Fix for #1415 pythonw.exe fails because std streams a missing by Christian Heimes · 17 years ago
  47. 1607278 Let's do as Guido says and return None instead of -1 by Christian Heimes · 17 years ago
  48. af935e3 Stop Python code from instantiating a new stdprinter with sys.stderr.__class__() by Christian Heimes · 17 years ago
  49. 96f3163 Merged revisions 58930-58938 via svnmerge from by Christian Heimes · 17 years ago
  50. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  51. e018b30 Bug #1415 by Christian Heimes · 17 years ago
  52. 7b6fc8e Fixed memoryview constructor. It allowed arbitrary keyword arguments. The bug was found by mykhal from #python. I've also added a small test case in the new test_memoryview.py by Christian Heimes · 17 years ago
  53. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  54. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  55. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
  56. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
  57. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  58. c6ecfcd Minor correction to the stdprinter object. by Guido van Rossum · 17 years ago
  59. 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
  60. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  61. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 17 years ago
  62. ae404e2 Sort the method lists for str8 and bytes so differences are more apparent. by Guido van Rossum · 17 years ago
  63. a5d2d55 Patch 1335 by Christian Heimes. by Guido van Rossum · 17 years ago
  64. 61ec0d3 Fix some Py_ssize_t warnings on Win64 that were probably bugs by Neal Norwitz · 17 years ago
  65. daa251c Patch # 1302 by Christian Heimes (with some love from me :-). by Guido van Rossum · 17 years ago
  66. d2093f7 Fix a refleak for `filename', introduced in rev. 58466. by Georg Brandl · 17 years ago
  67. 5a2f7e60 Fix a broken format in a PyErr_Format() call: %lx is not supported. by Guido van Rossum · 17 years ago
  68. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  69. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  70. b6538a8 Remove redundant PyInt/PyLong checks. by Georg Brandl · 17 years ago
  71. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 17 years ago
  72. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  73. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  74. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  75. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  76. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  77. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  78. 3d2fd7f Fix a small typo in the comment of unicode_default_encoding[]. by Alexandre Vassalotti · 17 years ago
  79. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  80. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  81. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  82. fe9bed0 Fix problems with memoryview object. There is still more to do to finish PEP 3118. The memory-view object needs to be fleshed out and the struct module needs to be modified. by Travis E. Oliphant · 17 years ago
  83. e518bf3 PyFile_WriteObject() should use PyObject_Repr(), not _ReprStr8(). by Guido van Rossum · 17 years ago
  84. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  85. 6ccd3f2 Replace all (locale-dependent) uses of isupper(), tolower(), etc., by by Guido van Rossum · 17 years ago
  86. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 17 years ago
  87. b35f128 At least one of the buildbots was complaining about newview being used by Neal Norwitz · 17 years ago
  88. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  89. 5dde61d Whitespace and line lengrth cleanup. by Guido van Rossum · 17 years ago
  90. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  91. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  92. ce272b6 Merged revisions 58203-58210 via svnmerge from by Thomas Wouters · 17 years ago
  93. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  94. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 17 years ago
  95. e4a9e78 Thomas Wouters suggested an obvious improvement to unicode_eq(): use memcmp(). by Guido van Rossum · 17 years ago
  96. 89d8c60 Switch dict lookup around to optimizing for unicode. by Guido van Rossum · 17 years ago
  97. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 17 years ago
  98. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  99. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  100. da86fcc Drop convert_binop. by Martin v. Löwis · 17 years ago