1. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  2. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  3. 7c4c6c5 Fix typo: formats -> format. (Only mattered in wide unicode builds.) by Guido van Rossum · 17 years ago
  4. 6c91378 Fix some more memory leaks (in error conditions) introduced in r58455. by Neal Norwitz · 17 years ago
  5. 4167ebc Fix the memory leak introduced in r58455. The buffer reference by Alexandre Vassalotti · 17 years ago
  6. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  7. 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
  8. d417a15 Fix typo in arraymodule.c (?) -- it's PyBUF_LOCK, not PyBUF_LOCKDATA. by Guido van Rossum · 17 years ago
  9. 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
  10. 0e474a8 remove hotshot profiler from Py3k by Fred Drake · 17 years ago
  11. 14ef70b Remove unused variables by Neal Norwitz · 17 years ago
  12. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  13. 9e780cc Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash. by Gregory P. Smith · 17 years ago
  14. 3f6d44e Delete now-unused static function Array_ass_slice(). by Guido van Rossum · 17 years ago
  15. 39763a1 Make Modules/_bsddb.c and PC/_winreg.c compile again by renaming by Thomas Heller · 17 years ago
  16. 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
  17. 16c7075 Remove more cruft leftover from nb_coerce. Rename nb_coerce to nb_reserved. by Neil Schemenauer · 17 years ago
  18. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  19. 54cf12b Fixing the spelling of "writeable" to "writable", particularly PyBUF_WRITEABLE. by Sean Reifscheider · 17 years ago
  20. 1ba3114 Added __format__ method to datetime.datetime, datetime.date, and datetime.time. by Eric Smith · 17 years ago
  21. c111d9f merge this from trunk: by Gregory P. Smith · 17 years ago
  22. c411918 email address update by Gregory P. Smith · 17 years ago
  23. 2f21eb3 Adds stand alone _md5 and _sha1 modules for use by hashlib on systems by Gregory P. Smith · 17 years ago
  24. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  25. 3dc33d1 Revert 57722. Move error dialog APIs to msvcrt instead, by Martin v. Löwis · 17 years ago
  26. 8b7a957 Insert "startfile" into posix_methods again; it was accidentially by Thomas Heller · 17 years ago
  27. 1fe5f38 Remove checking redundantly for checks of PyInt and PyLong. by Neal Norwitz · 17 years ago
  28. 150b7d7 Remove curses temp file consistently. by Guido van Rossum · 17 years ago
  29. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  30. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  31. 6790d60 Forbid an empty argument list in execv call. by Thomas Heller · 17 years ago
  32. 8a7c866 Move definition of TZNAME_ENCODING further up. by Martin v. Löwis · 17 years ago
  33. 945362c Implement PYTHONNOERRORWINDOW. by Martin v. Löwis · 17 years ago
  34. 3bb0070 Explicitly convert tzname to Unicode. Fixes #1040. by Martin v. Löwis · 17 years ago
  35. d24fdbc Use s# instead of t# for nis_match. by Martin v. Löwis · 17 years ago
  36. fb67be2 Three patches from issue #1047, by Amaury Forgeot d'Arc: by Guido van Rossum · 17 years ago
  37. e8a17aa Use the correct type for variables corresponding to 'u' formats. by Guido van Rossum · 17 years ago
  38. ec9a4af Straggler (forgot to save this earlier). by Guido van Rossum · 17 years ago
  39. 3227af4 Refuse to compute digests from PyUnicode (str) instances. by Guido van Rossum · 17 years ago
  40. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  41. fa9a121 "Fix" a few places that were using PyObject_AsCharBuffer() to convert a string by Guido van Rossum · 17 years ago
  42. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  43. 3d5cb22 Change to use the new buffer API instead of bytes objects for both keys and by Gregory P. Smith · 17 years ago
  44. 7d5baac posix.confname(): enforce that names as str instances. by Guido van Rossum · 17 years ago
  45. e22905a More changes needed to make things work once bytes and str are truly divorced. by Guido van Rossum · 17 years ago
  46. 908c871 Fix some refleaks (and format/error checking) by Neal Norwitz · 17 years ago
  47. 1e93f2b Fix warning by Neal Norwitz · 17 years ago
  48. ab45e27 Tkinter binding involving Control-spacebar raises unicode error Issue1028 by Kurt B. Kaiser · 17 years ago
  49. efaf629 Use unicode (hope it's right, I can't test it) by Neal Norwitz · 17 years ago
  50. a43cae3 Pass PyBUF_CHARACTER instead of PyBUF_SIMPLE to PyObject_GetBuffer(). by Guido van Rossum · 17 years ago
  51. 7f9d29c Use unicode by Neal Norwitz · 17 years ago
  52. 93c5682 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  53. 5616c6d Fix a couple of warnings by Neal Norwitz · 17 years ago
  54. 3c814d2 Use unicode (and bytes as appropriate) by Neal Norwitz · 17 years ago
  55. 8abd2e6 Use unicode by Neal Norwitz · 17 years ago
  56. 3fcbea5 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  57. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  58. fe53713 Use unicode by Neal Norwitz · 17 years ago
  59. 9406f5c Use the new buffer api for input data. by Gregory P. Smith · 17 years ago
  60. 6777c85 Use unicode by Neal Norwitz · 17 years ago
  61. 1ccfa90 Return a boolean for status by Neal Norwitz · 17 years ago
  62. e118862 Use unicode by Neal Norwitz · 17 years ago
  63. 392c5be Use unicode by Neal Norwitz · 17 years ago
  64. ae2c876 Use unicode by Neal Norwitz · 17 years ago
  65. b4e2f76 Use unicode by Neal Norwitz · 17 years ago
  66. b908126 Reorder code and decls so it's compilable with gcc 2.96 (C89). by Guido van Rossum · 17 years ago
  67. b0d2633 Use unicode strings by Neal Norwitz · 17 years ago
  68. fa06e5f Whoops, not sure how I screwed up the name. Now builds and passes the test. by Neal Norwitz · 17 years ago
  69. 8d3654d Use unicode and add a "test" for syslog by Neal Norwitz · 17 years ago
  70. eb8b3a6 Use unicode for password modules by Neal Norwitz · 17 years ago
  71. 808c7d8 Use unicode for reference (is there any way to build this module) by Neal Norwitz · 17 years ago
  72. 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
  73. fc5fafc Fix logic bug that triggered assert. by Guido van Rossum · 17 years ago
  74. fd53fd6 Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away. by Guido van Rossum · 17 years ago
  75. eda12ec Patch by Ero Carrera to get rid of PyString in timemodule.c. by Guido van Rossum · 17 years ago
  76. 9cfc62c cPickle was removed by Neal Norwitz · 17 years ago
  77. 0d94203 Use unicode for the errno.errorcode names by Neal Norwitz · 17 years ago
  78. 9af3ae4 Return unicode for a key name from a wide character by Neal Norwitz · 17 years ago
  79. c1786ea Use UTF-8 for a docstring that contains non-ASCII chars. by Neal Norwitz · 17 years ago
  80. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  81. 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
  82. d6d2f2f Use unicode. by Neal Norwitz · 17 years ago
  83. fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
  84. f9e115a Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  85. 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  86. 361ed15 Require strict bytes objects for all bsddb.db input values. by Gregory P. Smith · 17 years ago
  87. e405037 Fix typo in comment by Kurt B. Kaiser · 17 years ago
  88. 61e21b5 Merged revisions 57152-57220 via svnmerge from by Guido van Rossum · 17 years ago
  89. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  90. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  91. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  92. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  93. 76f2b24 Fix refcount leak, courtesy Christian Heines. by Guido van Rossum · 17 years ago
  94. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  95. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  96. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  97. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  98. eb08df2 Remove a bogus comment based on the code above. by Neal Norwitz · 17 years ago
  99. 32c4ac0 Down with str8! Change various socket APIs to use bytes or str instead str8. by Guido van Rossum · 17 years ago
  100. 956e359 The dbm module should use bytes for keys. This makes test_shelve pass. by Guido van Rossum · 17 years ago