1. e12454f The Grande 'sendall()' patch, copied from release21-maint. Fixes #516715. by Martin v. Löwis · 22 years ago
  2. 976ade6 Also fix the comment. by Marc-André Lemburg · 22 years ago
  3. bb8b78b Fix the name of the header file. by Marc-André Lemburg · 22 years ago
  4. a5d2b4c Break SSL support out of _socket module and place it into a new by Marc-André Lemburg · 22 years ago
  5. e441860 Whitespace normalization. by Tim Peters · 22 years ago
  6. 20882dd SF bug #516372: test_thread: unhandled exc. in thread by Tim Peters · 22 years ago
  7. e73ad2a Use the standard expression for the availability statement for alarm(). by Fred Drake · 22 years ago
  8. 8d1fdaf note that the alarm function is not available on Windows. by Skip Montanaro · 22 years ago
  9. 960d7a6 Added deprecatioon information for mac.xstat(). This closes SF bug #505150. by Fred Drake · 22 years ago
  10. 928051f The "%" character does not need to be escaped in verbatim environments. by Fred Drake · 22 years ago
  11. 7bc6f7a Consistently use \textasciicircum to produce a ^ character. by Fred Drake · 22 years ago
  12. 2eeec9b Fix typo. by Fred Drake · 22 years ago
  13. 78f6c86 Use PyModule_AddObject() instead of accessing the module dict directly. by Fred Drake · 22 years ago
  14. cca657b Use PyModule_AddIntConstant() instead of creating a private helper function. by Fred Drake · 22 years ago
  15. 8301256 Compute expat -I directives from srcdir. Fixes #517214. by Martin v. Löwis · 22 years ago
  16. b012a15 Finish the pyexpat rework for Windows: builders needn't suck down the by Tim Peters · 22 years ago
  17. 0c1ceaf Simon Budig's patch (posted by me): by Michael W. Hudson · 22 years ago
  18. 8fef47b Define VERSION in expat.h. by Martin v. Löwis · 22 years ago
  19. 9ad4b68 Windows time_clock(): rewrite to get rid of horrid casting tricks. by Tim Peters · 22 years ago
  20. 246debb Two OSX fixes related to switching Python versions in an existing sourcetree: by Jack Jansen · 22 years ago
  21. b48d198 "Generate" from expat.h.in, for 1.95.2. by Martin v. Löwis · 22 years ago
  22. 373f8d81 LOAD_FAST: rearrange branches to favor the expected case, and get by Tim Peters · 22 years ago
  23. 7ba5e81 Ensure we also build on VC7. Involves replacing largeint.h helper functions with msvc's native 64 bit integers. by Mark Hammond · 22 years ago
  24. a8d7384 Build using included Expat. by Martin v. Löwis · 22 years ago
  25. cf453fe Use included Expat library. Drop support for older expat versions. by Martin v. Löwis · 22 years ago
  26. 481f68a Disable usage of Expat's config.h. by Martin v. Löwis · 22 years ago
  27. 1dbb1ca Initial revision by Martin v. Löwis · 22 years ago
  28. 2e250b4 Fix bug #511786 (2.2.1 candidate): ensure that custom-supplied headers by Greg Ward · 22 years ago
  29. aeff668 Remove mentioning of -U option in "python -h" output. by Marc-André Lemburg · 22 years ago
  30. 34172d5 SF #515020, delete global variables which are used only for temporary by Neal Norwitz · 22 years ago
  31. 83bd70a SF #515005, change "1 + ''" (which pychecker warns about being invalid) by Neal Norwitz · 22 years ago
  32. f7fdedc SF #515022 remove unused variable by Neal Norwitz · 22 years ago
  33. aa38aa5 SF #515009, delete global variable that was apparently used only in a for loop. by Neal Norwitz · 22 years ago
  34. d5ba4ae SF #515018, delete global variable that was apparently used only by Neal Norwitz · 22 years ago
  35. f963b45 SF #515026, delete global variable that was apparently used only in a for loop. by Neal Norwitz · 22 years ago
  36. bc9bc18 SF #515024 remove unused variable by Neal Norwitz · 22 years ago
  37. f151625 SF #515021, print the refused list to the DEBUGSTREAM, so the parameter is used by Neal Norwitz · 22 years ago
  38. 4212ea4 SF #515012, cleanup: remove unused variable by Neal Norwitz · 22 years ago
  39. 22c5d77 SF #515011, cleanup: remove "or 0" condition by Neal Norwitz · 22 years ago
  40. 7fd41cc SF #515006, remove unnecessary import by Neal Norwitz · 22 years ago
  41. 086ac00 SF #515004 cleanup - remove unnecessary imports - rename dum -> dummy by Neal Norwitz · 22 years ago
  42. 9fb289d SF #515000, print result of f.tell() in test() instead of ignoring by Neal Norwitz · 22 years ago
  43. a0af63b Corrected import behaviour for codecs which live outside the encodings package. by Marc-André Lemburg · 22 years ago
  44. f2f219d Regenerate configure script by Andrew M. Kuchling · 22 years ago
  45. 54a3941 Bump version number to 2.3 by Andrew M. Kuchling · 22 years ago
  46. 58e7a68 Removed a spurious }. (How did it get there in the first place??) by Jack Jansen · 22 years ago
  47. 005dbb2 on MacOSX/Darwin, use ranlib when building static libs. by Just van Rossum · 22 years ago
  48. e28ee75 improvement to keybinding re-use check by Steven M. Gava · 22 years ago
  49. 9f25e67 base GetHighlight on GetThemeDict for better defaults by Steven M. Gava · 22 years ago
  50. 46fa7bf further work on config saving by Steven M. Gava · 22 years ago
  51. 052937f further work on config saving by Steven M. Gava · 22 years ago
  52. ff34626 Remove stub for unicode.txt. Resort README in dictionary order. by Guido van Rossum · 22 years ago
  53. 37aa580 News about the new alias support. by Marc-André Lemburg · 22 years ago
  54. 462004e Add IANA character set aliases to the encodings alias dictionary by Marc-André Lemburg · 22 years ago
  55. e92e0a9 Add news about PYC magic and changes to UTF-8 codec. by Marc-André Lemburg · 22 years ago
  56. 56ab921 Added a module docstring, which doubles as the --help text. by Barry Warsaw · 22 years ago
  57. 59b0b60 Updates related to Modules/Setup and setup.py. This addresses SF bug by Guido van Rossum · 22 years ago
  58. 4a02f95 Added regression test for start()/stop() returning bogus NULL. by Fred Drake · 22 years ago
  59. 2c146bf start() and stop() methods: return None where there is no exception; by Fred Drake · 22 years ago
  60. fa2e4c2 Declare real and imag as read-only attributes. by Guido van Rossum · 22 years ago
  61. 5ff8cb4 Whitespace cleanup. by Guido van Rossum · 22 years ago
  62. af64263 Fix typo by Neal Norwitz · 22 years ago
  63. 63cd9bf Python 10 was a success, commemorate it\! by Fred Drake · 22 years ago
  64. 65f5015 www.google.com is better than google.com. by Guido van Rossum · 22 years ago
  65. 745b460 Make it 1.5.2 compatible again. by Thomas Heller · 22 years ago
  66. bd3be8f Fix to the UTF-8 encoder: it failed on 0-length input strings. by Marc-André Lemburg · 22 years ago
  67. 9273ec7 Forgot to add the new emxccompiler.py from Andrew I. MacIntyre's by Marc-André Lemburg · 22 years ago
  68. dc724d6 Cosmetics. by Marc-André Lemburg · 22 years ago
  69. e7c6ee4 Whitespace fixes. by Marc-André Lemburg · 22 years ago
  70. 3688a88 Fix for the UTF-8 memory allocation bug and the UTF-8 encoding by Marc-André Lemburg · 22 years ago
  71. 6a60915 Don't blacklist ModalFilterUPP but always pass it as NULL. This enables the record routines to be generated. by Jack Jansen · 22 years ago
  72. e62ceac Added SndRecord and (classic only) SndRecordToFile. by Jack Jansen · 22 years ago
  73. 5bb8f78 Added support for unicode strings (utxt). by Jack Jansen · 22 years ago
  74. 085eb1b further work on config system and config saving by Steven M. Gava · 22 years ago
  75. c121745 Update the instructions on reporting bugs to reflect that anonymous reports by Fred Drake · 22 years ago
  76. baf43c5 When linking to an index page, explicitly name index.html instead of by Fred Drake · 22 years ago
  77. 210d3cc Update version number to match Include/patchlevel.h. by Fred Drake · 22 years ago
  78. 375bbc3 Update version number to match Include/patchlevel.h. by Fred Drake · 22 years ago
  79. 4014401 Added minimal support for floating windows. by Just van Rossum · 22 years ago
  80. bf0a908 Don't append quit menu when on OSX, it is special and automatic there. by Just van Rossum · 22 years ago
  81. 4e72038 Flush screen buffer upon console.flush() and output.flush(). by Just van Rossum · 22 years ago
  82. 2dcec0c Quick build: clarify that you have to do "make install" as root; OS by Guido van Rossum · 22 years ago
  83. 2cec354 Change the version string from "2.2+" to "2.3a0". disutils peels off by Tim Peters · 22 years ago
  84. a762f4c Got rid of an extra level of {} and funny formatting that was still by Jack Jansen · 22 years ago
  85. 3b388ec [Bug #220993; may also fix bug #479469] Fix flakiness when old by Andrew M. Kuchling · 22 years ago
  86. 8cb6540 Wesley Chun's SF patch 511380: add CGIHTTPServer error supt for Win32 by Guido van Rossum · 22 years ago
  87. d4c76bf A new dynload_next, which actually only works on OSX but isn't renamed yet. by Jack Jansen · 22 years ago
  88. 4892f24 Got rid of a few more NeXT ifdefs. The last, I think. by Jack Jansen · 22 years ago
  89. e75bfde Bugfix candidate. by Guido van Rossum · 22 years ago
  90. ab034fa Implement os.waitpid() for Windows, in a way that's compatible with Linux by Tim Peters · 22 years ago
  91. 0c350bf package_dir must be converted from the distutils path conventions to by Thomas Heller · 22 years ago
  92. 7cff66d improve user config dir handling by Steven M. Gava · 22 years ago
  93. a498af2 more work on configuration saving by Steven M. Gava · 22 years ago
  94. 11bd994 New tempfile and os.open() gimmicks for Windows. by Tim Peters · 22 years ago
  95. b24231e Restrict the mode to the lowest four octal positions; higher positions by Andrew M. Kuchling · 22 years ago
  96. 2544f51 OS/2 patches by Andrew I MacIntyre for distutils. by Marc-André Lemburg · 22 years ago
  97. c318260 added handle_error method description by Skip Montanaro · 22 years ago
  98. 1453754 string.split() docstring described the interpretation of the maxsplit by Fred Drake · 22 years ago
  99. cf6bfe4 Oh look, another one. by Michael W. Hudson · 22 years ago
  100. 67fb0c3 I think this fixes by Michael W. Hudson · 22 years ago