1. cda4f9a Fix off-by-one error in split_substring(). Fixes SF bug #122162. by Guido van Rossum · 24 years ago
  2. 8b26454 Test more split argument combinations: by Guido van Rossum · 24 years ago
  3. fb10c3f Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  4. 8b74b15 Test some Unicode pickling endcases. by Guido van Rossum · 24 years ago
  5. a31b4ef Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  6. 20d3fc0 Adapted from a patch by Barry Scott, SF patch #102875 and SF bug by Guido van Rossum · 24 years ago
  7. 99664e4 gdbm.open() no longer accepts garbage in the flags string. Fix the tests. by Neil Schemenauer · 24 years ago
  8. 2b6d7bc Do not talk about "real" numbers; talk about "floats" or "floating point by Fred Drake · 24 years ago
  9. e9e860f Add support for gdbm2 open flags ('s' and 'u'). Add module constant by Neil Schemenauer · 24 years ago
  10. e8f3ad5 Add returns_unicode to the __members__ list. Fix a small style consistency nit. by Fred Drake · 24 years ago
  11. 95b4ec5 Do not assume that types.UnicodeType exists; we might be running in an old by Fred Drake · 24 years ago
  12. 1402ab2 Use the string module instead of string methods; this should still work by Fred Drake · 24 years ago
  13. 5100133 urlretrieve() description included explanation of "data" parameter, but by Fred Drake · 24 years ago
  14. f16527c Typo caught by /F -- thanks! by Fred Drake · 24 years ago
  15. 23fff91 Add definitions for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 24 years ago
  16. 429b41e Add declarations for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 24 years ago
  17. 47f5fdc Add the -W option. by Guido van Rossum · 24 years ago
  18. 2a862c6 Python part of the warnings subsystem. by Guido van Rossum · 24 years ago
  19. cfd42b5 Add PyErr_Warn(). by Guido van Rossum · 24 years ago
  20. d0977cd Add definitions for standard warning category classes (PyExc_Warning etc.). by Guido van Rossum · 24 years ago
  21. 3fc3037 Add declarations for standard warning category classes (PyExc_Warning by Guido van Rossum · 24 years ago
  22. 1703cf6 Before calling traceback.print_exc(), call sys.stdout.flush(). This makes by Fred Drake · 24 years ago
  23. 279aa6c DOMException.__init__(): Remember to pass self to Exception.__init__(). by Fred Drake · 24 years ago
  24. 5080b33 Comment out a debugging print statement that triggered a complaint in c.l.py. by Guido van Rossum · 24 years ago
  25. 065cba1 Added documentation for random.shuffle(). by Fred Drake · 24 years ago
  26. e6e03ea Get rid of string functions. by Guido van Rossum · 24 years ago
  27. c80f182 Get rid of string functions. References to string.whitespace, by Guido van Rossum · 24 years ago
  28. 34735a6 Get rid of string functions. by Guido van Rossum · 24 years ago
  29. b2493f8 Get rid of string functions, except maketrans() (which is *not* obsolete!). by Guido van Rossum · 24 years ago
  30. 4d192b3 Add test case for error message raised by bad % format character by Andrew M. Kuchling · 24 years ago
  31. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  32. 29c45a5 Grant Griffin <grant.griffin@honeywell.com>: by Fred Drake · 24 years ago
  33. a1099be Fix typo by Andrew M. Kuchling · 24 years ago
  34. 4fb5882 Document napms() Add reference to demo directory by Andrew M. Kuchling · 24 years ago
  35. 2e09530 [Patch #102827] Fix for PR#119558, avoiding core dumps by checking for by Andrew M. Kuchling · 24 years ago
  36. 2824d7f Wrapper for napms() function, contributed by Thomas Gellekum <tg@FreeBSD.org> by Andrew M. Kuchling · 24 years ago
  37. 15c3c2b Curses demos contributed by Thomas Gellekum <tg@FreeBSD.org>. by Andrew M. Kuchling · 24 years ago
  38. 61c64c9 Various tweaks. It now returns the exact same files as Matthias' tool 95% of the time. by Jack Jansen · 24 years ago
  39. f0d7508 Oops, interaction() returned a single value in stead of a tuple (I thought that bug was loooong fixed??!?). by Jack Jansen · 24 years ago
  40. 581fa78 First stab at a script that mimicks Matthias Neerachers tool used to build GUSI. by Jack Jansen · 24 years ago
  41. 80716f0 Set autodispose only if RefCon isn't set yet on the window. This way we don't accidentally dispose of windows that are actually dialogs-in-disguise. by Jack Jansen · 24 years ago
  42. 4550b00 Fix bit rot: use sock.connect((host, port)) and allow 2nd cmd line arg. by Guido van Rossum · 24 years ago
  43. de77bc5 For the title page, insert the package version number before the date. by Fred Drake · 24 years ago
  44. 3277da0 Update the test suite to cover more ground. by Fred Drake · 24 years ago
  45. f7cf40d Lots of small bug fixes and DOM API conformance improvements: by Fred Drake · 24 years ago
  46. c16adce Adjust PullDOM to use a DOMImplementation instance to create new Document by Fred Drake · 24 years ago
  47. adf5410 Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  48. 9e8f4ea Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  49. f0b3154 Update information on the locking() function, added the needed constants. by Fred Drake · 24 years ago
  50. f7f88b1 Add long-overdue docstrings to dict methods. by Tim Peters · 24 years ago
  51. 4897119 Finish a sentence that was left half-written! by Fred Drake · 24 years ago
  52. 0e76ab2 Use METH_VARARGS instead of "1" in list method table. by Tim Peters · 24 years ago
  53. ec126da When raising KeyError, provide the key value that failed. by Fred Drake · 24 years ago
  54. dd80220 Changing allow_reuse_address's default value, and documenting it. by Moshe Zadka · 24 years ago
  55. a63bd1c Untabify! (Barry, this is gonna cost you a bottle of wine! ;) by Fred Drake · 24 years ago
  56. f1c7c88 Typo repair in comments. Fell for GregS's .popitem() poke. by Tim Peters · 24 years ago
  57. 24d6da3 Added "stub" documentation for xml.dom.pulldom for Paul to fill out with by Fred Drake · 24 years ago
  58. ff87174 Get rid of string module and string exceptions. by Guido van Rossum · 24 years ago
  59. bc9c1b1 Added descriptions of the defined exceptions and their mapping to the by Fred Drake · 24 years ago
  60. 2235295 Set CXX even when --with-cxx is not specified. Closes bug 14782. by Martin v. Löwis · 24 years ago
  61. 537970f Set CXX even when --with-cxx is not specified. Closes bug #124782 by Martin v. Löwis · 24 years ago
  62. 5d1b5ea Add code to DOMException to ensure it cannot be instantiated directly, by Fred Drake · 24 years ago
  63. 64acf1d Add standard DOM exception hierarchy. by Martin v. Löwis · 24 years ago
  64. 2df6694 Document --with-cxx. by Martin v. Löwis · 24 years ago
  65. a3b5a5f Check in README file and one demo program by Andrew M. Kuchling · 24 years ago
  66. ea8f2bf Bring comments up to date (e.g., they still said the table had to be by Tim Peters · 24 years ago
  67. 8152d32 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  68. c140131 Change the file's indentation from tabs to 4 spaces per level. by Barry Warsaw · 24 years ago
  69. c7ed0e3 Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errno by Barry Warsaw · 24 years ago
  70. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  71. 63596ae The Mac C library (MSL from CodeWarrior 6) and I/O library (GUSI by Jack Jansen · 24 years ago
  72. d49056c The ".pth" code knew about the layout of Python trees on unix and by Jack Jansen · 24 years ago
  73. fd0226b Use c2pstr() in stead of Pstring() to convert C-strings to by Jack Jansen · 24 years ago
  74. 27489d4 Optionally weed out duplicate prototypes for the same function (which by Jack Jansen · 24 years ago
  75. c1a4a04 Adapted to new standard for initmodule() routine: don't call by Jack Jansen · 24 years ago
  76. 7e0c005 Various new standard types. by Jack Jansen · 24 years ago
  77. b8c6863 Added support for generating a single module from multiple .h files. by Jack Jansen · 24 years ago
  78. 5f884c0 Refer to the sourceforge site for gusi downloads. by Jack Jansen · 24 years ago
  79. 4b64c2a Put all AE constants into AppleEvents.py by Jack Jansen · 24 years ago
  80. 50bf148 Qdoffs now exports the GWorldObj_{New,Convert} functions. by Jack Jansen · 24 years ago
  81. 5afad83 Added a c2pstrcpy() function. by Jack Jansen · 24 years ago
  82. 3661d39 Describe {}.popitem(). by Guido van Rossum · 24 years ago
  83. 723ad8a More toolbox modules adapted to Universal Headers 3.3.2. by Jack Jansen · 24 years ago
  84. 8ed8130 Use new multi-input-file feature of bgen in stead of @-file hack to parse multiple header files. A side effect is that the ObjectSupportLib routines are now also available in Python. by Jack Jansen · 24 years ago
  85. 6fe608c Regenerated from Universal Headers 3.3.2 by Jack Jansen · 24 years ago
  86. 177fa8c Put all AE constants into AppleEvents.py by Jack Jansen · 24 years ago
  87. 1072c38 Add popitem(). by Guido van Rossum · 24 years ago
  88. ff63f20 "Documentation" for {}.popitem(). by Guido van Rossum · 24 years ago
  89. b822c61 Added test for {}.popitem(). by Guido van Rossum · 24 years ago
  90. ba6ab84 Add popitem() -- SF patch #102733. by Guido van Rossum · 24 years ago
  91. 968c36d Qdoffs now exports GWorld new/convert, and Qt uses them. by Jack Jansen · 24 years ago
  92. b5e4248 Drag moved to core toolbox modules (Win uses it). by Jack Jansen · 24 years ago
  93. 7683229 Qdoffs now exports GWorld new/convert, and Qt uses them. by Jack Jansen · 24 years ago
  94. cfc4cf6 Add URL with info for PIL. by Guido van Rossum · 24 years ago
  95. 9d64479 Typo detected by "the miraculous Debian package lint tool "lintian" by Guido van Rossum · 24 years ago
  96. 988ad2b Changed .getaliases() support to register the new aliases in the by Marc-André Lemburg · 24 years ago
  97. 5fa0bd6 Partial fix for SF bug 122780 (msvcrt.locking constants aren't defined). by Tim Peters · 24 years ago
  98. d92dfe0 SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512. by Tim Peters · 24 years ago
  99. f377d57 Trivial typo fix, submitted by Charles Waldman (SF patch #102794). by Guido van Rossum · 24 years ago
  100. dc90cc2 Additional docs for __iadd__ and family, closing SF bug #117178 and SF patch by Thomas Wouters · 24 years ago