1. 3805321 Merged revisions 59465-59487 via svnmerge from by Christian Heimes · 17 years ago
  2. b76922a Merged revisions 59450-59464 via svnmerge from by Christian Heimes · 17 years ago
  3. ad8dcd5 Minor cleanup in the gc module. by Amaury Forgeot d'Arc · 17 years ago
  4. e6650f9 Reverting revision 59394. We'll sort this out later. by Guido van Rossum · 17 years ago
  5. 03b5c9a Fix the leaks in test_ssl. Issue 1469. Patch by Christian Heimes: by Guido van Rossum · 17 years ago
  6. dbb7b9d Fixed problem with missing PyInt_CheckExact() macro in _ctypes.c by Christian Heimes · 17 years ago
  7. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  8. b00324f Merged revisions 59304-59312 via svnmerge from by Guido van Rossum · 17 years ago
  9. cbf3b5c Merged revisions 59275-59303 via svnmerge from by Christian Heimes · 17 years ago
  10. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  11. 1a3284e #1535: rename __builtin__ module to builtins. by Georg Brandl · 17 years ago
  12. b5daaed Marc-Andre Lemburg has found the culprit of the problem in r57142. by Christian Heimes · 17 years ago
  13. 4e30a84 Merged revisions 59239-59244 via svnmerge from by Christian Heimes · 17 years ago
  14. c0ac106 Fixed bug #1505 Changes to PyMethod_New breaks ctypes on Windows by Christian Heimes · 17 years ago
  15. 218a5ed Fixed #1508 Removal of stale code in _csv.c / pyexpat.c by Christian Heimes · 17 years ago
  16. 1c280ab Rewrap error message. by Georg Brandl · 17 years ago
  17. 8b2b8db Merged revisions 59187-59192 via svnmerge from by Christian Heimes · 17 years ago
  18. 578d7ab The changes to PyMethod_New and the removal of unbound methods breaks ctypes' COMError on Windows. This patch doesn't address the problem but re-enables the import of _ctypes until somebody has time to fix it right. I've no time to dig into it. Also see http://bugs.python.org/issue1505 by Christian Heimes · 17 years ago
  19. 0d3fb8a Merged revisions 59107-59186 via svnmerge from by Guido van Rossum · 17 years ago
  20. f519261 #1479: Fix refleak in csv module (from rev 59062). by Georg Brandl · 17 years ago
  21. ceab610 #1480: fix refleak in the sqlite module. by Georg Brandl · 17 years ago
  22. 3ee05af Stream functions like read() are supposed to return bytes, not buffer. by Amaury Forgeot d'Arc · 17 years ago
  23. 6bd238c Use PyString instead of PyBytes in wrap_strftime(). by Walter Dörwald · 17 years ago
  24. 830a4bc os.environ contains PyUnicode instances and not PyString instances by Christian Heimes · 17 years ago
  25. b2b6262 Removed some leftovers from the str8 days by Christian Heimes · 17 years ago
  26. 484fcd4 In audioop, return PyString instead of PyBytes. by Amaury Forgeot d'Arc · 17 years ago
  27. cd4d452 Merged revisions 59077-59104 via svnmerge from by Guido van Rossum · 17 years ago
  28. 8a392d7 Convert the socket module to insist on bytes for input, and to return bytes by Guido van Rossum · 17 years ago
  29. 1898084 More PyBytes -> PyString. by Guido van Rossum · 17 years ago
  30. f9e443c Make os.read() return bytes, not bytearray. by Guido van Rossum · 17 years ago
  31. 82c0dfa Return PyString, not PyBytes, for a bytes array. Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  32. f06628b Make read() and certificate() return bytes instead of bytearray instances. by Guido van Rossum · 17 years ago
  33. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  34. 651b61f Fixed bug #1020 pyexpat.XMParserType broken (was: pydoc doesn't work on pyexpat) by Christian Heimes · 17 years ago
  35. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  36. 96e7b3d The patch from weck does a better job than my original idea. Thanks! by Christian Heimes · 17 years ago
  37. 90ebd3e os.system: on Windows, avoid encoding the command and use the "wide" function: _wsystem by Amaury Forgeot d'Arc · 17 years ago
  38. 10c476d Correct test_cvs on Windows, as suggested by Raghuram Devarakonda by Amaury Forgeot d'Arc · 17 years ago
  39. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  40. 74c29c7 Make test_cmd_line_scripts pass by using a unicode string instead of by Guido van Rossum · 17 years ago
  41. 80101a8 I'm using the xxmodule and xxsubtype to test the msvccompiler on Windows. I'm having trouble to compile the module with VS 2008 cl.exe because "initializer is not a constant". by Christian Heimes · 17 years ago
  42. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  43. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  44. 3d392eb Merged revisions 58947-59004 via svnmerge from by Guido van Rossum · 17 years ago
  45. b615069 Fix for VS 2008 by Christian Heimes · 17 years ago
  46. 6e027db get SSL support to work again by Bill Janssen · 17 years ago
  47. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  48. 6e8ea0f Fix two compiler warnings on Win64. by Thomas Heller · 17 years ago
  49. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  50. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  51. e69a08e Fix for bug #1442 pythonstartup addition of minor error checking by Christian Heimes · 17 years ago
  52. 32fbe59 Merged revisions 58939-58946 via svnmerge from by Christian Heimes · 17 years ago
  53. aec75c3 Fixed some of the bugs in the readline module. #1425 is still open and several methods don't do enough error checks. by Christian Heimes · 17 years ago
  54. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  55. f78f12a Issue 1406: use widechar api for os.environ, on Windows. by Thomas Heller · 17 years ago
  56. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  57. 27da812 Change a variable to Py_ssize_t to silence a compiler warning (and because it by Brett Cannon · 17 years ago
  58. c6f6008 Remove an unused local variable. by Brett Cannon · 17 years ago
  59. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  60. 7767711 Merged revisions 58817-58861 via svnmerge from by Guido van Rossum · 17 years ago
  61. 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
  62. 568065e Fixes issue1371 and reenables those tests. by Gregory P. Smith · 17 years ago
  63. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  64. 0b48954 Fixed bug in _fileio.c and test_pep277. On Windows IOError.filename was not set because the name is stored in widename. by Christian Heimes · 17 years ago
  65. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  66. 3d7a90d Get the locale and pwd tests working on the Solaris box where there by Neal Norwitz · 17 years ago
  67. 8866e0a Try to get this test to pass on Win64 by making clean for ssize_t by Neal Norwitz · 17 years ago
  68. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 17 years ago
  69. efee9f5 Use unicode in more places. Fixes a problem with str8 + str in test. by Neal Norwitz · 17 years ago
  70. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  71. 687b9c0 Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), by Guido van Rossum · 17 years ago
  72. 39013cd A 'PyObject *' parameter in PyErr_Format must use %S parameter, not %s. by Thomas Heller · 17 years ago
  73. 97f9d4f Patch #1318 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  74. b98cda4 Patch #1314 by Christian Heimes. by Guido van Rossum · 17 years ago
  75. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  76. 3b8cb17 #1061 (mainly by Thomas Wouters): use weak sets for abc caches. by Georg Brandl · 17 years ago
  77. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  78. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  79. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  80. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  81. 7c4c6c5 Fix typo: formats -> format. (Only mattered in wide unicode builds.) by Guido van Rossum · 17 years ago
  82. 6c91378 Fix some more memory leaks (in error conditions) introduced in r58455. by Neal Norwitz · 17 years ago
  83. 4167ebc Fix the memory leak introduced in r58455. The buffer reference by Alexandre Vassalotti · 17 years ago
  84. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  85. 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
  86. d417a15 Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. by Guido van Rossum · 17 years ago
  87. d5c0add Fix Issue 1268 with the array module by backing-out the 'w' addition. All builds will continue to use 'u' for unicode. by Travis E. Oliphant · 17 years ago
  88. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  89. 14ef70b Remove unused variables by Neal Norwitz · 17 years ago
  90. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  91. 9e780cc Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. by Gregory P. Smith · 17 years ago
  92. 3f6d44e Delete now-unused static function Array_ass_slice(). by Guido van Rossum · 17 years ago
  93. 39763a1 Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming by Thomas Heller · 17 years ago
  94. 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
  95. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  96. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  97. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  98. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  99. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  100. c411918 email address update by Gregory P. Smith · 17 years ago