1. 8694cc4 Remove redundant reference to tab (since it = 'horizontal tab') by Andrew M. Kuchling · 24 years ago
  2. 0cc87f3 Make isspace(chr(32)) return true by Andrew M. Kuchling · 24 years ago
  3. e6bf858 Document ERR and OK by Andrew M. Kuchling · 24 years ago
  4. caefb37 Add the curses constants ERR and OK to the module at TG's suggestion by Andrew M. Kuchling · 24 years ago
  5. 1dea760 Make sure subsections are formatted into HTML pages with reasonable names. by Fred Drake · 24 years ago
  6. f08cbb1 Added information on the ExternalEntityParserCreate() method. by Fred Drake · 24 years ago
  7. 1e0611b The "context" parameter to the ExternalEntityRefParameter exposes internal by Fred Drake · 24 years ago
  8. 9a1a7dd The regression test for the regex module should not trip the deprecation by Fred Drake · 24 years ago
  9. 994d853 Choose the smallest value of x,y for the clock's radius (instead of just taking the by Andrew M. Kuchling · 24 years ago
  10. 49d27c8 Remove superfluous semicolons by Andrew M. Kuchling · 24 years ago
  11. f07aad1 CHange error messages for ord(), using "string" instead of "string or Unicode" by Andrew M. Kuchling · 24 years ago
  12. 4e36d58 Shortened / wrapped some long lines. by Fred Drake · 24 years ago
  13. 5caee40 Add 'see also' link to curses.panel by Andrew M. Kuchling · 24 years ago
  14. d7d2e19 Add correction caught by Thomas Gellekum (and sitting in my e-mail) by Andrew M. Kuchling · 24 years ago
  15. 9f5eeeb Wrapper for _curses_panel module; currently this adds nothing extra by Andrew M. Kuchling · 24 years ago
  16. 676634b Added documentation for the panel wrapper module by Andrew M. Kuchling · 24 years ago
  17. 1a86cbb Add _curses_panel to Setup by Andrew M. Kuchling · 24 years ago
  18. 7b59ed2 Patch #102813: add a wrapper for the panel library included with ncurses. by Andrew M. Kuchling · 24 years ago
  19. 3255268 Export C API from this module. by Andrew M. Kuchling · 24 years ago
  20. 0c7a0bd Added header file for C API exported by _cursesmodule.c by Andrew M. Kuchling · 24 years ago
  21. 72a18a6 Update this demo to use curses.panel by Andrew M. Kuchling · 24 years ago
  22. 48f224c Fix bug 126587: matchobject.groupdict() leaks memory because of a missing by Andrew M. Kuchling · 24 years ago
  23. 738293d When using the latest & greatest version of Expat (currently in the Expat by Fred Drake · 24 years ago
  24. e412e7a Fix lots of small markup nits. Wrapped some long lines. by Fred Drake · 24 years ago
  25. 23382f5 Another demo from Thomas Gellekum (seasonally-themed, too) by Andrew M. Kuchling · 24 years ago
  26. 68a6f5a Document the window.overlay() and .overwrite() methods by Andrew M. Kuchling · 24 years ago
  27. 9de6ffa Another patch from Thomas Gellekum: add .overlay() and .overwrite() by Andrew M. Kuchling · 24 years ago
  28. 9bcc68c Whoops! Two stray characters crept in to my last check-in by Andrew M. Kuchling · 24 years ago
  29. 04a45e9 Patch #102492, fixing bug #116677: by Andrew M. Kuchling · 24 years ago
  30. 34c20cf Patch #102955, fixing one of the warnings in bug #121479: by Andrew M. Kuchling · 24 years ago
  31. c867f74 Change expected message for ValueError, fixing bug #126400 by Andrew M. Kuchling · 24 years ago
  32. e7e190e Make the indentation consistently use tabs instead of using spaces just by Fred Drake · 24 years ago
  33. 8fe2c12 Add forgotten initialization. Fixes bug #120994, "Traceback with by Andrew M. Kuchling · 24 years ago
  34. f947ffe Patch #102940: use only printable Unicode chars in reporting by Andrew M. Kuchling · 24 years ago
  35. 7ff3133 Regenerated so that NewGWorld is included. by Jack Jansen · 24 years ago
  36. 3224865 Emulate a few more non-carbon calls in carbon and the other way around. by Jack Jansen · 24 years ago
  37. 87a3092 Added hash() and compare() functions. Needed because multiple WinObj's can now refer to the same underlying WindowRef. by Jack Jansen · 24 years ago
  38. 620e914 Blacklisted a few constants with funny definitions (and they're not important anyway: backward compatible error numbers). by Jack Jansen · 24 years ago
  39. 932af11 Patch #102868 from cgw: fix memory leak when an EOF is encountered by Andrew M. Kuchling · 24 years ago
  40. 7292e92 Adding a warning about the regsub module. This also disables further by Guido van Rossum · 24 years ago
  41. b1d1361 Adding a warning about the regex module. This is the first official by Guido van Rossum · 24 years ago
  42. fad81f0 Be explicit about scheme_chars -- string.letters is locale dependent by Guido van Rossum · 24 years ago
  43. 68abe83 Fix typo by Andrew M. Kuchling · 24 years ago
  44. 70f1288 Use binary mode to open "wave" files. by Guido van Rossum · 24 years ago
  45. 5db5ba1 Document the warnings module. by Guido van Rossum · 24 years ago
  46. dea764d Updated string literals description to encompass Unicode literals and the by Fred Drake · 24 years ago
  47. 1367b83 Document warning categories. by Guido van Rossum · 24 years ago
  48. 035f7e8 Clarify __repr__ and __str__. by Guido van Rossum · 24 years ago
  49. 5b56765 Added documentation on the ErrorHandler interface. This closes bug #126034. by Fred Drake · 24 years ago
  50. e22e4b2 Oops. The value "0 or +1" for the category argument of PyErr_Warn() by Guido van Rossum · 24 years ago
  51. 9a18a7e Document Pyerr_Warn(). by Guido van Rossum · 24 years ago
  52. 3dbb406 Document Pyerr_Warn(). by Guido van Rossum · 24 years ago
  53. 1378c32 Document the -W option as best as I can. by Guido van Rossum · 24 years ago
  54. d1db30b Improve error messages for invalid warning arguments; don't raise by Guido van Rossum · 24 years ago
  55. 5aff775 Make string.translate(s, table) work for Unicode s. Two things are by Guido van Rossum · 24 years ago
  56. cda4f9a Fix off-by-one error in split_substring(). Fixes SF bug #122162. by Guido van Rossum · 24 years ago
  57. 8b26454 Test more split argument combinations: by Guido van Rossum · 24 years ago
  58. fb10c3f Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  59. 8b74b15 Test some Unicode pickling endcases. by Guido van Rossum · 24 years ago
  60. a31b4ef Minimal fix for the complaints about pickling Unicode objects. (SF by Guido van Rossum · 24 years ago
  61. 20d3fc0 Adapted from a patch by Barry Scott, SF patch #102875 and SF bug by Guido van Rossum · 24 years ago
  62. 99664e4 gdbm.open() no longer accepts garbage in the flags string. Fix the tests. by Neil Schemenauer · 24 years ago
  63. 2b6d7bc Do not talk about "real" numbers; talk about "floats" or "floating point by Fred Drake · 24 years ago
  64. e9e860f Add support for gdbm2 open flags ('s' and 'u'). Add module constant by Neil Schemenauer · 24 years ago
  65. e8f3ad5 Add returns_unicode to the __members__ list. Fix a small style consistency nit. by Fred Drake · 24 years ago
  66. 95b4ec5 Do not assume that types.UnicodeType exists; we might be running in an old by Fred Drake · 24 years ago
  67. 1402ab2 Use the string module instead of string methods; this should still work by Fred Drake · 24 years ago
  68. 5100133 urlretrieve() description included explanation of "data" parameter, but by Fred Drake · 24 years ago
  69. f16527c Typo caught by /F -- thanks! by Fred Drake · 24 years ago
  70. 23fff91 Add definitions for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 24 years ago
  71. 429b41e Add declarations for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 24 years ago
  72. 47f5fdc Add the -W option. by Guido van Rossum · 24 years ago
  73. 2a862c6 Python part of the warnings subsystem. by Guido van Rossum · 24 years ago
  74. cfd42b5 Add PyErr_Warn(). by Guido van Rossum · 24 years ago
  75. d0977cd Add definitions for standard warning category classes (PyExc_Warning etc.). by Guido van Rossum · 24 years ago
  76. 3fc3037 Add declarations for standard warning category classes (PyExc_Warning by Guido van Rossum · 24 years ago
  77. 1703cf6 Before calling traceback.print_exc(), call sys.stdout.flush(). This makes by Fred Drake · 24 years ago
  78. 279aa6c DOMException.__init__(): Remember to pass self to Exception.__init__(). by Fred Drake · 24 years ago
  79. 5080b33 Comment out a debugging print statement that triggered a complaint in c.l.py. by Guido van Rossum · 24 years ago
  80. 065cba1 Added documentation for random.shuffle(). by Fred Drake · 24 years ago
  81. e6e03ea Get rid of string functions. by Guido van Rossum · 24 years ago
  82. c80f182 Get rid of string functions. References to string.whitespace, by Guido van Rossum · 24 years ago
  83. 34735a6 Get rid of string functions. by Guido van Rossum · 24 years ago
  84. b2493f8 Get rid of string functions, except maketrans() (which is *not* obsolete!). by Guido van Rossum · 24 years ago
  85. 4d192b3 Add test case for error message raised by bad % format character by Andrew M. Kuchling · 24 years ago
  86. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  87. 29c45a5 Grant Griffin <grant.griffin@honeywell.com>: by Fred Drake · 24 years ago
  88. a1099be Fix typo by Andrew M. Kuchling · 24 years ago
  89. 4fb5882 Document napms() Add reference to demo directory by Andrew M. Kuchling · 24 years ago
  90. 2e09530 [Patch #102827] Fix for PR#119558, avoiding core dumps by checking for by Andrew M. Kuchling · 24 years ago
  91. 2824d7f Wrapper for napms() function, contributed by Thomas Gellekum <tg@FreeBSD.org> by Andrew M. Kuchling · 24 years ago
  92. 15c3c2b Curses demos contributed by Thomas Gellekum <tg@FreeBSD.org>. by Andrew M. Kuchling · 24 years ago
  93. 61c64c9 Various tweaks. It now returns the exact same files as Matthias' tool 95% of the time. by Jack Jansen · 24 years ago
  94. 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
  95. 581fa78 First stab at a script that mimicks Matthias Neerachers tool used to build GUSI. by Jack Jansen · 24 years ago
  96. 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
  97. 4550b00 Fix bit rot: use sock.connect((host, port)) and allow 2nd cmd line arg. by Guido van Rossum · 24 years ago
  98. de77bc5 For the title page, insert the package version number before the date. by Fred Drake · 24 years ago
  99. 3277da0 Update the test suite to cover more ground. by Fred Drake · 24 years ago
  100. f7cf40d Lots of small bug fixes and DOM API conformance improvements: by Fred Drake · 24 years ago