1. 08041d5 Update checks to consider Windows error numbers. by Martin v. Löwis · 18 years ago
  2. 4fc2bda Drop now-unnecessary arguments to posix_2str. by Martin v. Löwis · 18 years ago
  3. 8e0d494 Implement os.{chdir,rename,rmdir,remove} using Win32 directly. by Martin v. Löwis · 18 years ago
  4. 7773671 Patch #1475845: Raise IndentationError for unexpected indent. by Martin v. Löwis · 18 years ago
  5. 61d168a Bug #1481530: allow "from os.path import ..." with imputil by Georg Brandl · 18 years ago
  6. 14f3da7 Don't fail the tests when libglut.so or libgle.so cannot be loaded. by Thomas Heller · 18 years ago
  7. 1bb6230 Bug #1385040: don't allow "def foo(a=1, b): pass" in the compiler package. by Georg Brandl · 18 years ago
  8. 23d9d45 Bug #1472191: convert breakpoint indices to ints before comparing them to ints by Georg Brandl · 18 years ago
  9. a2ac2ef RFE #1472176: In httplib, don't encode the netloc and hostname with "idna" if not necessary. by Georg Brandl · 18 years ago
  10. 7377ad2 Add seamonkey to list of Windows browsers too. by Georg Brandl · 18 years ago
  11. d8accb3 Get rid of a couple more context object references, fix some markup and clarify what happens when a generator context function swallows an exception. by Nick Coghlan · 18 years ago
  12. afd5e63 Finish bringing SVN into line with latest version of PEP 343 by getting rid of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager() by Nick Coghlan · 18 years ago
  13. 1b06a1d Move network tests from test_urllib2 to test_urllib2net. by Georg Brandl · 18 years ago
  14. 852bb00 Patch #1480067: don't redirect HTTP digest auth in urllib2 by Georg Brandl · 18 years ago
  15. a3a1329 Correct some formulations, fix XXX comments. by Martin v. Löwis · 18 years ago
  16. 4511a71 Whitespace normalization. by Tim Peters · 18 years ago
  17. 3053667 fix up whitespace in prompt strings by Fred Drake · 18 years ago
  18. 5f1cca0 one more place to avoid extra markup (how many will there be?) by Fred Drake · 18 years ago
  19. 2de7a35 one more place to avoid extra markup by Fred Drake · 18 years ago
  20. 6b07be9 at least comment on why curly-quotes are not enabled by Fred Drake · 18 years ago
  21. f25fa6d avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to by Fred Drake · 18 years ago
  22. f863609 tell LaTeX2HTML to: - use UTF-8 output - not mess with the >>> prompt! by Fred Drake · 18 years ago
  23. e10b21b remove unnecessary assignment by Fred Drake · 18 years ago
  24. f322d68 Update context manager section for removal of __context__ by Andrew M. Kuchling · 18 years ago
  25. 214db63 Use open() instead of file() by Andrew M. Kuchling · 18 years ago
  26. b204583 Hopefully this will fix the spurious failures of test_mailbox.py that I'm by Guido van Rossum · 18 years ago
  27. a71fd71 Documentation bug: PySet_Pop() returns a new reference (because the by Armin Rigo · 18 years ago
  28. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 18 years ago
  29. 8f6cbe1 Fix the formatting of KeyboardInterrupt -- a bad issubclass() call. by Guido van Rossum · 18 years ago
  30. a883701 Provide encoding as keyword argument; soften warning paragraph about encodings by Andrew M. Kuchling · 18 years ago
  31. 4b4a63e Replaced my dumb way of calculating seconds to midnight with Tim Peters' much more sensible suggestion. What was I thinking ?!? by Vinay Sajip · 18 years ago
  32. 9652baa Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1. by Neal Norwitz · 18 years ago
  33. 017e68c SF #1479988: add methods to allow access to weakrefs for the by Fred Drake · 18 years ago
  34. a6d01ce Try to fix breakage caused by patch #1479181, r45850 by Neal Norwitz · 18 years ago
  35. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 18 years ago
  36. 4bbf66e Markup fixes by Andrew M. Kuchling · 18 years ago
  37. 6849488 Add item by Andrew M. Kuchling · 18 years ago
  38. edbe657 Markup fixes; add some XXX comments noting problems by Andrew M. Kuchling · 18 years ago
  39. d22c6db add dependency by Fred Drake · 18 years ago
  40. a07fbce Rename parameters to match the documentation (which by Martin v. Löwis · 18 years ago
  41. 5f43074 Add msilib documentation. by Martin v. Löwis · 18 years ago
  42. 594855c Rename uisample to text, drop all non-text tables. by Martin v. Löwis · 18 years ago
  43. 82560eb Further integration of the documentation for the sqlite3 module. There's still by Gerhard Häring · 18 years ago
  44. e3c958c Some ElementTree fixes: import from xml, not xmlcore; fix case of module name; mention list() instead of getchildren() by Andrew M. Kuchling · 18 years ago
  45. 8672519 Work around deadlock risk. Will backport. by Martin v. Löwis · 18 years ago
  46. 6550f03 - minor clarification in section title by Fred Drake · 18 years ago
  47. dbcc8d9 Port forward from 2.4 branch: by Barry Warsaw · 18 years ago
  48. 0961228 Add item by Andrew M. Kuchling · 18 years ago
  49. 4b5caae Add urllib2 HOWTO from Michael Foord by Andrew M. Kuchling · 18 years ago
  50. 3c1983f Patch #1479438: add \keyword markup for "with". by Georg Brandl · 18 years ago
  51. 3583cff Patch #1472854: make the rlcompleter.Completer class usable on non- by Georg Brandl · 18 years ago
  52. 208badd Fix another problem in inspect: if the module for an object cannot be found, don't try to give its __dict__ to linecache. by Georg Brandl · 18 years ago
  53. 72ae6c8 Fix infinite regress when inspecting <string> or <stdin> frames. by Phillip J. Eby · 18 years ago
  54. de9b624 Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. by Georg Brandl · 18 years ago
  55. 44a118a Patch #1470976: don't NLST files when retrieving over FTP. by Georg Brandl · 18 years ago
  56. bffb0bc In stdlib, use hashlib instead of deprecated md5 and sha modules. by Georg Brandl · 18 years ago
  57. fa42bd7 Patch #1470846: fix urllib2 ProxyBasicAuthHandler. by Georg Brandl · 18 years ago
  58. 5085fe2 Use \versionchanged instead of \versionadded for new parameter support. by George Yoshida · 18 years ago
  59. c923611 Add two items by Andrew M. Kuchling · 18 years ago
  60. eb2e192 This is the start of documentation for the sqlite3 module. Please feel free to by Gerhard Häring · 18 years ago
  61. 1e01397 Fix docstring for contextfactory; mentioned old contextmanager name. by Brett Cannon · 18 years ago
  62. b75d43d Further changes for #1471883: Edit Misc/NEWS, and add expat_config.h. by Martin v. Löwis · 18 years ago
  63. aa013da Add item by Andrew M. Kuchling · 18 years ago
  64. 18db487 Make case of 'ZIP' consistent by Andrew M. Kuchling · 18 years ago
  65. b37bcb5 Add item by Andrew M. Kuchling · 18 years ago
  66. 988117f Patch 1471883: --enable-universalsdk on Mac OS X by Ronald Oussoren · 18 years ago
  67. f674939 grammar fix by George Yoshida · 18 years ago
  68. 6d78a58 Bug #1478429: make datetime.datetime.fromtimestamp accept every float, by Georg Brandl · 18 years ago
  69. 6a907d8 Remove a duplicated test (the same test is in test_incomplete.py). by Thomas Heller · 18 years ago
  70. 0f45a07 Bug #1478326: don't allow '/' in distutils.util.get_platform machine names by Georg Brandl · 18 years ago
  71. 7a3fd89 Bug #1472949: stringify IOErrors in shutil.copytree when appending by Georg Brandl · 18 years ago
  72. d771672 correct a dead link by George Yoshida · 18 years ago
  73. 6778007 Bug #1475009: clarify ntpath.join behavior with absolute components by Georg Brandl · 18 years ago
  74. 314acac Add SeaMonkey to the list of Mozilla browsers. by Georg Brandl · 18 years ago
  75. 9dea97a fix markup glitch by George Yoshida · 18 years ago
  76. abab1d4 Fix a warning on ppc (debian) by Neal Norwitz · 18 years ago
  77. 237bf40 Fix a warning on alpha by Neal Norwitz · 18 years ago
  78. 82d4cc2 Fix some warnings on Mac OS X 10.4 by Neal Norwitz · 18 years ago
  79. dd28d1c Try to really fix the slow buildbots this time. by Neal Norwitz · 18 years ago
  80. 0bbbb00 Add some whitespace to be more consistent. by Neal Norwitz · 18 years ago
  81. 076ba21 Add more ignores of ImportWarnings; these are all just potential triggers by Thomas Wouters · 18 years ago
  82. 9df4e6f - Add new Warning class, ImportWarning by Thomas Wouters · 18 years ago
  83. 2c1e63f Added SVN access for Steven Bethard and Talin, for PEP updating. by David Goodger · 18 years ago
  84. 137b1ad Do the small-memory run of big-meormy tests using a prime number, rather by Thomas Wouters · 18 years ago
  85. 58ac820 Some style fixes and size-calculation fixes. Also do the small-memory run by Thomas Wouters · 18 years ago
  86. 5e218b4 Rerun the libffi configuration if any of the files used for that by Thomas Heller · 18 years ago
  87. 2574f5c Some more size-estimate fixes, for large-list-tests. by Thomas Wouters · 18 years ago
  88. 8bf9398 markup fix by George Yoshida · 18 years ago
  89. efd3a09 Mention the xmlrpclib.Error base class, which is used in one of the examples by Andrew M. Kuchling · 18 years ago
  90. 356f938 [Bug #1477140] Import Error base class by Andrew M. Kuchling · 18 years ago
  91. 7acb7b4 [Bug #1477102] Add necessary import to example by Andrew M. Kuchling · 18 years ago
  92. 99714cf Bump document version by Andrew M. Kuchling · 18 years ago
  93. 1e649be Now that 2.5a2 is out, revert to the current date by Andrew M. Kuchling · 18 years ago
  94. a5b51fa Tagging for release of Python 2.5a2 by Anthony Baxter · 18 years ago
  95. 3556b2d 2.5a2 by Anthony Baxter · 18 years ago
  96. c7d0032 2.5a2 by Anthony Baxter · 18 years ago
  97. 4b8ec63 add missing word by Fred Drake · 18 years ago
  98. dbb8c41 - update version numbers in file names again, until we have a better way by Fred Drake · 18 years ago
  99. 0999433 one more place to use the current Python version by Fred Drake · 18 years ago
  100. f4795c8 Fix build on MIPS for libffi. I haven't tested this yet because I by Hye-Shik Chang · 18 years ago