1. f5af2aa Patch #1462700: Make _ctypes_test depend on _ctypes. by Martin v. Löwis · 18 years ago
  2. 84c95b9 Fix test_pty on OSF/1 (Tru64). The problem is that the newline gets by Neal Norwitz · 18 years ago
  3. 9cdfa4c Skip the test for sys.stdin.seek(-1) on OSF/1 (Tru64) since it does Bad Things by Neal Norwitz · 18 years ago
  4. 3e1ec3a Remove some duplicated code for handling Mac modules. No functional change (intended). Also stoped setting srcdir twice. by Neal Norwitz · 18 years ago
  5. 19379f1 * Fix a refleak of *_attributes. by Neal Norwitz · 18 years ago
  6. 92e212f Accept keyword arguments for __import__ and doc the addition of the level param from PEP 328. by Neal Norwitz · 18 years ago
  7. 92a6be4 Whitespace: break long line by Neal Norwitz · 18 years ago
  8. d08eaf4 Use Py_ssize_t in slices by Neal Norwitz · 18 years ago
  9. b902f4e Use absolute imports by Neal Norwitz · 18 years ago
  10. 480725d Whitespace normalization. by Tim Peters · 18 years ago
  11. 3dc6bb3 cleaned up setup.py code for sqlite3, based on patch from Gerhard Haering. by Anthony Baxter · 18 years ago
  12. 04ee870 Always use firstweekday module 7. by Walter Dörwald · 18 years ago
  13. 5f284da Document recent fdopen() change. by Georg Brandl · 18 years ago
  14. 7fff58c Readd urllib.quote import as it doesn't cause any harm. by Georg Brandl · 18 years ago
  15. 4696ffb Remove "disgusting hack" in favour of closure (patch #1462235) by Georg Brandl · 18 years ago
  16. c5ffd91 Patch #1463012: remove not working undocumented classes from urllib2 by Georg Brandl · 18 years ago
  17. 720096a Patch #1462790: fix urllib2 ProxyHandler for host:port proxies by Georg Brandl · 18 years ago
  18. 4eb521e bug #1462706: guard against host not having FQDN hostname by Georg Brandl · 18 years ago
  19. 31fe35b end the sentence... by Fredrik Lundh · 18 years ago
  20. 1c0e328 fix markup error by Fred Drake · 18 years ago
  21. e805829 Grammar fix by Andrew M. Kuchling · 18 years ago
  22. 38f8507 Write various sections; I haven't been able to check whether the TeX markup is correct by Andrew M. Kuchling · 18 years ago
  23. ad5177c Patch #624325: urlparse.urlparse() and urlparse.urlsplit() results by Fred Drake · 18 years ago
  24. f878b81 Make firstweekday a simple attribute instead by Walter Dörwald · 18 years ago
  25. cd10347 Fix LaTeX oversight. by Georg Brandl · 18 years ago
  26. 12603c4 Expand comments on line numbers and blocks. by Jeremy Hylton · 18 years ago
  27. 7034f6b Some typo & grammar fixes by Andrew M. Kuchling · 18 years ago
  28. f2d712b Update status of this PEP by Andrew M. Kuchling · 18 years ago
  29. 95f0e4c Make ssize_t clean by Neal Norwitz · 18 years ago
  30. 828fdef Update SQLite version requirement. by Georg Brandl · 18 years ago
  31. 28161e2 patch #1416559: don't define _XOPEN_SOURCE on Mac OS Panther by Georg Brandl · 18 years ago
  32. 9cdf563 clarify new docs on attr value entity expansion by Georg Brandl · 18 years ago
  33. 07f5b35 backport r243 from the pysqlite2 svn repository - lowers the required version by Anthony Baxter · 18 years ago
  34. 7f6b67c patch #1462498: handle entityrefs in attribute values. by Georg Brandl · 18 years ago
  35. 48d5e50 Bug #947906: Add classes LocaleTextCalendar and LocaleHTMLCalendar, by Walter Dörwald · 18 years ago
  36. 1c5a59f Bug #1458017: make distutils.Log._log more forgiving when passing in by Georg Brandl · 18 years ago
  37. 014d29f Patch #1462496: typo in libsignal.tex by Georg Brandl · 18 years ago
  38. 22a9dc8 Patch #1459631: documnent zlib.Decompress.flush() length parameter. by Georg Brandl · 18 years ago
  39. dcfdae7 Bug #1460564: document that socket.fromfd() duplicates the given by Georg Brandl · 18 years ago
  40. e071b00 bug #1462278: small fix in documentation of __op__ vs __rop__ methods by Georg Brandl · 18 years ago
  41. 23fd3d4 add support for the sips: scheme (identical to sip: except for scheme name) by Fred Drake · 18 years ago
  42. d8eaa49 Fix stupid typo. by Tim Peters · 18 years ago
  43. 4423b8c test_timeout(): Disable this new test on all platforms. by Tim Peters · 18 years ago
  44. c7403ed Add a clause to the PY_FORMAT_SIZE_T to stop warnings on 32 bit intel by Anthony Baxter · 18 years ago
  45. c51ee69 merged the sqlite-integration branch. by Anthony Baxter · 18 years ago
  46. c17976e Another crack at bug #1460340: make random.sample(dict) by Tim Peters · 18 years ago
  47. 2a9a6b0 In the fdopen(fd, 'a') case on UNIX, don't try to set fd's flags to -1 if by Thomas Wouters · 18 years ago
  48. c90397a Make test_socket_ssl finally pass on WIn by Georg Brandl · 18 years ago
  49. ed02eb6 Bug #1177964: make file iterator raise MemoryError on too big files by Georg Brandl · 18 years ago
  50. 644b1e7 Add guards against fcntl() not being available on Windows. by Georg Brandl · 18 years ago
  51. 8147275 Update version number to 2.5 by Georg Brandl · 18 years ago
  52. 54a188a bug #1461855: make os.fdopen() add the O_APPEND flag if using "a" mode. by Georg Brandl · 18 years ago
  53. dcdfd22 bug #1257988: don't bail out on gethostbyname(gethostname()) failure by Georg Brandl · 18 years ago
  54. b88e19c bug #1444104: add note about fdopen() to os.open(). by Georg Brandl · 18 years ago
  55. d49be30 Disable test_socket_ssl timeout test on Windows. by Georg Brandl · 18 years ago
  56. ccadf84 Patch #1460496: round() now accepts keyword arguments. by Georg Brandl · 18 years ago
  57. 338ef7d Bug #1445068: getpass.getpass() can now be given an explicit stream by Georg Brandl · 18 years ago
  58. 22ec80b Patch #1462313, bug #1443328: the pickle modules now can handle classes by Georg Brandl · 18 years ago
  59. 43f08a8 Patch #1380952: fix SSL objects timing out on consecutive read()s by Georg Brandl · 18 years ago
  60. dd2245f Bug #1250170, Patch #1462230: handle socket.gethostname() failures gracefully by Georg Brandl · 18 years ago
  61. 296aef8 Expand comments. by Jeremy Hylton · 18 years ago
  62. 22f3a6a Add 2.5 libraries. by Martin v. Löwis · 18 years ago
  63. 76a2cae typos by Georg Brandl · 18 years ago
  64. 51dbc4c traceback now shows error position for all SyntaxError subclasses, by Georg Brandl · 18 years ago
  65. 3bf538f Complete markup. by Georg Brandl · 18 years ago
  66. a6126ba Fix the reference leak in test_generators, by explicitly breaking the cycle by Thomas Wouters · 18 years ago
  67. 58917a6 Bug #947906: An object oriented interface has been added to the calendar by Walter Dörwald · 18 years ago
  68. 3f144f9 Tagging for release r25a0 by Martin v. Löwis · 18 years ago
  69. abbb5e1 Remove tag, to recreate it right away. by Martin v. Löwis · 18 years ago
  70. 4c97498 Add index entries for new-style/old-style class. by Georg Brandl · 18 years ago
  71. b227bea object() is a function, not a base class. by Georg Brandl · 18 years ago
  72. 1320cf8 Bug #1461610: xmlrpclib has no function "binary". by Georg Brandl · 18 years ago
  73. c44e14e Fix typos. by Walter Dörwald · 18 years ago
  74. 5d23f9a Don't add multiple empty lines at the end of the codec. With this a by Walter Dörwald · 18 years ago
  75. a35b05e Clarify what the final argument does in IncrementalDecoder.decode(). by Walter Dörwald · 18 years ago
  76. 602d339 Add a NEWS entry for the Alpha fixes by Neal Norwitz · 18 years ago
  77. dedeeaa Get gcc to do strict IEEE math. This flag was already used for cc, just not by Neal Norwitz · 18 years ago
  78. 7b8cf38 improve reporting of illegal section nesting (provide location which by Fred Drake · 18 years ago
  79. 842ab70 fix sectioning: cannot skip section levels by Fred Drake · 18 years ago
  80. 46cc702 test_main(): Restore the decimal context that was in by Tim Peters · 18 years ago
  81. ef57567 Repaired a number of errors in this test: by Tim Peters · 18 years ago
  82. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  83. c259cc9 Insert a safety space after numbers as well as names in untokenize(). by Guido van Rossum · 18 years ago
  84. 090f815 Add '-Wno-deprecated-warnings' to the compile flags for the Carbon extensions by Ronald Oussoren · 18 years ago
  85. 0d93a23 Try to fix test_loading on openbsd. by Thomas Heller · 18 years ago
  86. 300269a Oops - this should not have gone in. by Thomas Heller · 18 years ago
  87. b320682 Output more info when the test fails. by Thomas Heller · 18 years ago
  88. 314861c Minor bugs in the __index__ code (PEP 357), with tests. by Armin Rigo · 18 years ago
  89. 4ef3a23 whitespace normalisation by Anthony Baxter · 18 years ago
  90. ecdc0a9 That one was a mistake. by Georg Brandl · 18 years ago
  91. d37ac69 Remove unnecessary casts from type object initializers. by Georg Brandl · 18 years ago
  92. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  93. 3987df5 Try to build _ctypes on x86 openbsd. by Thomas Heller · 18 years ago
  94. 5eca19b Checking in the test for PEP 357. by Armin Rigo · 18 years ago
  95. 67b6d51 Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  96. 262c00a Fixed bug #1459029 - unicode reprs were double-escaped. by Anthony Baxter · 18 years ago
  97. 80a5d01 Mark the upload command as new in 2.5, per Neal Norwitz's request. by Phillip J. Eby · 18 years ago
  98. 66bc4ef fill in refcount information for APIs first documented in Python 2.5 by Fred Drake · 18 years ago
  99. 3e482d9 merge revision 43437 from the release24-maint branch: by Fred Drake · 18 years ago
  100. 59821cf Oops, forgot to checkin the NEWS for --identity by Phillip J. Eby · 18 years ago