1. eb8b3a6 Use unicode for password modules by Neal Norwitz · 17 years ago
  2. 808c7d8 Use unicode for reference (is there any way to build this module) by Neal Norwitz · 17 years ago
  3. 41cfce9 Remove PyArg_Parse usage from time module. (An extra set of eyeballs on by Skip Montanaro · 17 years ago
  4. fc5fafc Fix logic bug that triggered assert. by Guido van Rossum · 17 years ago
  5. fd53fd6 Fixes by Ero Carrera to remove PyString_. I had to massage a few problems away. by Guido van Rossum · 17 years ago
  6. eda12ec Patch by Ero Carrera to get rid of PyString in timemodule.c. by Guido van Rossum · 17 years ago
  7. 9cfc62c cPickle was removed by Neal Norwitz · 17 years ago
  8. 0d94203 Use unicode for the errno.errorcode names by Neal Norwitz · 17 years ago
  9. 9af3ae4 Return unicode for a key name from a wide character by Neal Norwitz · 17 years ago
  10. c1786ea Use UTF-8 for a docstring that contains non-ASCII chars. by Neal Norwitz · 17 years ago
  11. 13e05de Fix math.ceil() and math.floor() to fall back to __ceil__ and __floor__ by Guido van Rossum · 17 years ago
  12. 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
  13. d6d2f2f Use unicode. by Neal Norwitz · 17 years ago
  14. fe096d2 Remove unused variable. by Guido van Rossum · 17 years ago
  15. f9e115a Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  16. 56dc955 Use a newer API for creating the module so we don't have to create by Neal Norwitz · 17 years ago
  17. 361ed15 Require strict bytes objects for all bsddb.db input values. by Gregory P. Smith · 17 years ago
  18. e405037 Fix typo in comment by Kurt B. Kaiser · 17 years ago
  19. 61e21b5 Merged revisions 57152-57220 via svnmerge from by Guido van Rossum · 17 years ago
  20. b803c51 Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz. by Travis E. Oliphant · 17 years ago
  21. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  22. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  23. 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
  24. 76f2b24 Fix refcount leak, courtesy Christian Heines. by Guido van Rossum · 17 years ago
  25. eb33e5a Remove support for BeOS by Skip Montanaro · 17 years ago
  26. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  27. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  28. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  29. eb08df2 Remove a bogus comment based on the code above. by Neal Norwitz · 17 years ago
  30. 32c4ac0 Down with str8! Change various socket APIs to use bytes or str instead str8. by Guido van Rossum · 17 years ago
  31. 956e359 The dbm module should use bytes for keys. This makes test_shelve pass. by Guido van Rossum · 17 years ago
  32. fc9ba93 Don't mess with string.letters any more. It is most likely going to disappear. by Guido van Rossum · 17 years ago
  33. 4040fb8 Create Unicode objects. by Martin v. Löwis · 17 years ago
  34. 50fb866 Use Tcl_SetObjResult instead of Tcl_SetResult. by Martin v. Löwis · 17 years ago
  35. 88b44da Cleanup a little. by Neal Norwitz · 17 years ago
  36. cda5c06 Fix memory leak in an error condition by Neal Norwitz · 17 years ago
  37. fca7005 Fix memory leak by Neal Norwitz · 17 years ago
  38. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  39. aea70e0 Fix the refleak in strftime when converting a %Z with a user defined tzinfo. by Neal Norwitz · 17 years ago
  40. 7ac9712 Change module to produce and consume bytes. by Martin v. Löwis · 17 years ago
  41. 0eaa940 Fix automatic replacing mistake. by Georg Brandl · 17 years ago
  42. 10f07c4 A few sqlite files were still using RO instead of READONLY. by Guido van Rossum · 17 years ago
  43. a291c8f Fix reference leak. by Martin v. Löwis · 17 years ago
  44. d1cd4d4 Set sys.stdout.encoding properly. by Martin v. Löwis · 17 years ago
  45. 8dfc4a9 Remove support for __members__ and __methods__. There still might be by Neal Norwitz · 17 years ago
  46. 2cde0eb Fix refleaks by Neal Norwitz · 17 years ago
  47. e9fb515 Fix refcount bug in make_Zreplacement(). by Guido van Rossum · 17 years ago
  48. 6e69f7f Fix a bit of code that wasn't converted properly, causing a segfault. by Guido van Rossum · 17 years ago
  49. 6d21456 Make the sqlite tests pass. by Gerhard Häring · 17 years ago
  50. 516f41e Fix some logic in PythonCmd() -- if the AsString() call failed, we'd by Guido van Rossum · 17 years ago
  51. 9ce8e38 Fix two bugs in socket_getaddr(): by Guido van Rossum · 17 years ago
  52. c76a250 Merged revisions 56782-56847 via svnmerge from by Guido van Rossum · 17 years ago
  53. 918f49e Fix most of the bsddb3 tests. by Martin v. Löwis · 17 years ago
  54. 2fb5ac7 Fix the ctypes tests. Patch from Victor Stinner. He writes: by Thomas Heller · 17 years ago
  55. 0269b91 SF patch # 1769767, get test_xml_etree_c working. More conversions are probably needed. by Neal Norwitz · 17 years ago
  56. 3c8ba93 Py_ssize_t requires "n" format, this fixes most of the 64-bit only failures. by Neal Norwitz · 17 years ago
  57. 3045c7c Fix a type error in a previous patch I made to this module. by Guido van Rossum · 17 years ago
  58. a9769c2 Fix the last remaining test_csv failure. by Guido van Rossum · 17 years ago
  59. 75c26bc BZ2File.read(0) should return b"" rather than raising ValueError. by Guido van Rossum · 17 years ago
  60. 346f1a8 Kill remaining tp_print definitions. by Guido van Rossum · 17 years ago
  61. b942d28 Quick fixes for assert failures in dbm wrapper code. by Guido van Rossum · 17 years ago
  62. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  63. 28a181c missing docstrings by Skip Montanaro · 17 years ago
  64. e3b10f4 One char->Py_UNICODE change missed in r56777 - according to Adam Hupp this is the change to make... by Skip Montanaro · 17 years ago
  65. 4626458 SF patch# 1767398 by Adam Hupp. by Guido van Rossum · 17 years ago
  66. 64ce505 Make bsddb use bytes as keys and values. Add StringKeys by Martin v. Löwis · 17 years ago
  67. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  68. 6252083 Change read() on SSL socket to return bytes. by Jeremy Hylton · 17 years ago
  69. c2de7c0 Get rid of a bogus assert when recv_into() is called with a zero-length by Guido van Rossum · 17 years ago
  70. ad8d300 SF patch# 1766592 by Paul Colomiets. Fix test_zipimport. by Guido van Rossum · 17 years ago
  71. 1bba9db Revert previous checkin. by Martin v. Löwis · 17 years ago
  72. f3f0c61 Return bytes, not str8. by Martin v. Löwis · 17 years ago
  73. e5aeaad Return bytes, not string from read(). Makes test_mmap.py pass. by Guido van Rossum · 17 years ago
  74. 2f2fffb Fix two bad type identifiers that caused crashes on OSX (icglue and Nav). by Guido van Rossum · 17 years ago
  75. 6c95da3 ccMake test_curses pass. Can't guarantee I caught every spot. by Guido van Rossum · 17 years ago
  76. f761e10 Make test_tcl.py pass, by accepting unicode strings as variable names. by Guido van Rossum · 17 years ago
  77. 4ca9471 SF patch# 1759016 by Joe Gregorio, who writes: by Guido van Rossum · 17 years ago
  78. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  79. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  80. 3a2e5ce Make audioop and its tests use bytes throughout. by Martin v. Löwis · 17 years ago
  81. 36e0a92 Merged revisions 56443-56466 via svnmerge from by Guido van Rossum · 17 years ago
  82. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  83. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  84. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  85. 1c5a98a Fix for cProfile. SF patch# 1755176 by Amaury Forgeot d'Arc. by Guido van Rossum · 17 years ago
  86. b358a2c SF patch# 1752647 by Joe Gregorio. by Guido van Rossum · 17 years ago
  87. 3e6cbf1 For easier merging, revert ths change; it will be brought back in when by Thomas Heller · 17 years ago
  88. 19b5254 c_char, c_char_p objects and c_char array structure fields return by Thomas Heller · 17 years ago
  89. 27384da Do not accept str8 type in function calls any longer. by Thomas Heller · 17 years ago
  90. ace0505 Remove all the Python 2.3 compatibility markers (the Python 3 ctypes by Thomas Heller · 17 years ago
  91. 84d66a0 Remove all the Python 2.3 compatibility markers (the Python 3 ctypes by Thomas Heller · 17 years ago
  92. e5095e1 Structure fields of type c_char array or c_wchar array accept bytes or by Thomas Heller · 17 years ago
  93. 3821e31 c_void_p.from_param accepts bytes. Fix test_prototypes. by Thomas Heller · 17 years ago
  94. 3d79dd9 c_char_p.from_param accepts bytes. Fix test_parameters. by Thomas Heller · 17 years ago
  95. 7775c71 Accept bytes as parameter to foreign functions without prototype. by Thomas Heller · 17 years ago
  96. 6083131 Accept bytes for c_wchar_p instances and c_wchar array instances. by Thomas Heller · 17 years ago
  97. d076228 Change the StgDictObject's proto member to a PyUnicode_Object (was a by Thomas Heller · 17 years ago
  98. 2c5e964 Accept bytes in c_char_p and c_wchar_p types. by Thomas Heller · 17 years ago
  99. 3af4266 ctypes.c_char and ctypes.c_wchar now accept initialization from byte objects. by Thomas Heller · 17 years ago
  100. f7c6d86 Use a unicode string as unique_key instead of 8-bit string. by Thomas Heller · 17 years ago