1. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  2. 2be0373 Added some additional checks for sys.std?? is None, see #1440 by Christian Heimes · 17 years ago
  3. e69a08e Fix for bug #1442 pythonstartup addition of minor error checking by Christian Heimes · 17 years ago
  4. 32fbe59 Merged revisions 58939-58946 via svnmerge from by Christian Heimes · 17 years ago
  5. 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
  6. 58da931 Merged revisions 58886-58929 via svnmerge from by Guido van Rossum · 17 years ago
  7. f78f12a Issue 1406: use widechar api for os.environ, on Windows. by Thomas Heller · 17 years ago
  8. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  9. 27da812 Change a variable to Py_ssize_t to silence a compiler warning (and because it by Brett Cannon · 17 years ago
  10. c6f6008 Remove an unused local variable. by Brett Cannon · 17 years ago
  11. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  12. 7767711 Merged revisions 58817-58861 via svnmerge from by Guido van Rossum · 17 years ago
  13. 2cc30da Merged revisions 58742-58816 via svnmerge from by Guido van Rossum · 17 years ago
  14. 568065e Fixes issue1371 and reenables those tests. by Gregory P. Smith · 17 years ago
  15. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  16. 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
  17. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  18. 3d7a90d Get the locale and pwd tests working on the Solaris box where there by Neal Norwitz · 17 years ago
  19. 8866e0a Try to get this test to pass on Win64 by making clean for ssize_t by Neal Norwitz · 17 years ago
  20. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 17 years ago
  21. efee9f5 Use unicode in more places. Fixes a problem with str8 + str in test. by Neal Norwitz · 17 years ago
  22. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  23. 687b9c0 Patch 1318 by Christian Heimes: remove os.tmpnam(), os.tempnam(), by Guido van Rossum · 17 years ago
  24. 39013cd A 'PyObject *' parameter in PyErr_Format must use %S parameter, not %s. by Thomas Heller · 17 years ago
  25. 97f9d4f Patch #1318 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  26. b98cda4 Patch #1314 by Christian Heimes. by Guido van Rossum · 17 years ago
  27. e1a0d11 #1316: remove redundant PyLong_Check calls when PyInt_Check was already called. by Georg Brandl · 17 years ago
  28. 3b8cb17 #1061 (mainly by Thomas Wouters): use weak sets for abc caches. by Georg Brandl · 17 years ago
  29. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  30. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  31. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  32. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  33. 7c4c6c5 Fix typo: formats -> format. (Only mattered in wide unicode builds.) by Guido van Rossum · 17 years ago
  34. 6c91378 Fix some more memory leaks (in error conditions) introduced in r58455. by Neal Norwitz · 17 years ago
  35. 4167ebc Fix the memory leak introduced in r58455. The buffer reference by Alexandre Vassalotti · 17 years ago
  36. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  37. 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
  38. d417a15 Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. by Guido van Rossum · 17 years ago
  39. 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
  40. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  41. 14ef70b Remove unused variables by Neal Norwitz · 17 years ago
  42. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  43. 9e780cc Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. by Gregory P. Smith · 17 years ago
  44. 3f6d44e Delete now-unused static function Array_ass_slice(). by Guido van Rossum · 17 years ago
  45. 39763a1 Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming by Thomas Heller · 17 years ago
  46. 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
  47. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  48. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  49. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  50. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  51. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  52. c411918 email address update by Gregory P. Smith · 17 years ago
  53. 2f21eb3 Adds stand alone _md5 and _sha1 modules for use by hashlib on systems by Gregory P. Smith · 17 years ago
  54. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  55. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  56. 8b7a957 Insert "startfile" into posix_methods again; it was accidentially by Thomas Heller · 17 years ago
  57. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  58. 150b7d7 Remove curses temp file consistently. by Guido van Rossum · 17 years ago
  59. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  60. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  61. 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 17 years ago
  62. 8a7c866 Move definition of TZNAME_ENCODING further up. by Martin v. Löwis · 17 years ago
  63. 945362c Implement PYTHONNOERRORWINDOW. by Martin v. Löwis · 17 years ago
  64. 3bb0070 Explicitly convert tzname to Unicode. Fixes #1040. by Martin v. Löwis · 17 years ago
  65. d24fdbc Use s# instead of t# for nis_match. by Martin v. Löwis · 17 years ago
  66. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  67. e8a17aa Use the correct type for variables corresponding to 'u' formats. by Guido van Rossum · 17 years ago
  68. ec9a4af Straggler (forgot to save this earlier). by Guido van Rossum · 17 years ago
  69. 3227af4 Refuse to compute digests from PyUnicode (str) instances. by Guido van Rossum · 17 years ago
  70. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  71. fa9a121 "Fix" a few places that were using PyObject_AsCharBuffer() to convert a string by Guido van Rossum · 17 years ago
  72. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  73. 3d5cb22 Change to use the new buffer API instead of bytes objects for both keys and by Gregory P. Smith · 17 years ago
  74. 7d5baac posix.confname(): enforce that names as str instances. by Guido van Rossum · 17 years ago
  75. e22905a More changes needed to make things work once bytes and str are truly divorced. by Guido van Rossum · 17 years ago
  76. 908c871 Fix some refleaks (and format/error checking) by Neal Norwitz · 17 years ago
  77. 1e93f2b Fix warning by Neal Norwitz · 17 years ago
  78. ab45e27 Tkinter binding involving Control-spacebar raises unicode error Issue1028 by Kurt B. Kaiser · 17 years ago
  79. efaf629 Use unicode (hope it's right, I can't test it) by Neal Norwitz · 17 years ago
  80. a43cae3 Pass PyBUF_CHARACTER instead of PyBUF_SIMPLE to PyObject_GetBuffer(). by Guido van Rossum · 17 years ago
  81. 7f9d29c Use unicode by Neal Norwitz · 17 years ago
  82. 93c5682 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  83. 5616c6d Fix a couple of warnings by Neal Norwitz · 17 years ago
  84. 3c814d2 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  85. 8abd2e6 Use unicode by Neal Norwitz · 17 years ago
  86. 3fcbea5 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  87. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  88. fe53713 Use unicode by Neal Norwitz · 17 years ago
  89. 9406f5c Use the new buffer api for input data. by Gregory P. Smith · 17 years ago
  90. 6777c85 Use unicode by Neal Norwitz · 17 years ago
  91. 1ccfa90 Return a boolean for status by Neal Norwitz · 17 years ago
  92. e118862 Use unicode by Neal Norwitz · 17 years ago
  93. 392c5be Use unicode by Neal Norwitz · 17 years ago
  94. ae2c876 Use unicode by Neal Norwitz · 17 years ago
  95. b4e2f76 Use unicode by Neal Norwitz · 17 years ago
  96. b908126 Reorder code and decls so it's compilable with gcc 2.96 (C89). by Guido van Rossum · 17 years ago
  97. b0d2633 Use unicode strings by Neal Norwitz · 17 years ago
  98. fa06e5f Whoops, not sure how I screwed up the name. Now builds and passes the test. by Neal Norwitz · 17 years ago
  99. 8d3654d Use unicode and add a "test" for syslog by Neal Norwitz · 17 years ago
  100. eb8b3a6 Use unicode for password modules by Neal Norwitz · 17 years ago