1. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  2. b6568b9 Add a name (old change sitting in my tree) by Andrew M. Kuchling · 20 years ago
  3. d783694 Remove old reminder by Andrew M. Kuchling · 20 years ago
  4. 43285d4 CGMainDisplayID() doesn't exist on 10.1, so don't try to call it when by Jack Jansen · 20 years ago
  5. aa2e498 Record Python 2.3.4 (final) build number. by Thomas Heller · 20 years ago
  6. 9c322fb The expression list in inheritance is not optional. Fixes #960448. by Martin v. Löwis · 20 years ago
  7. 477c856 Move grammar rule for lambda_form into section on lambdas. Fixes #964525. by Martin v. Löwis · 20 years ago
  8. 13ff116 Fix typo reported in #964592. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  9. dd07e59 Document PyModule_AddIntConstant to take a long. Fixes #962471. by Martin v. Löwis · 20 years ago
  10. 04697e8 Patch #924294: Do not check for AF_INET6 if it is not defined. by Martin v. Löwis · 20 years ago
  11. 7dc8ec9 Copyright year changed by Vinay Sajip · 20 years ago
  12. d894872 Patch #954115: Fix os.stat handling of UNC roots. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  13. 0659452 Added IMAP4_stream to __all__ by Piers Lauder · 20 years ago
  14. 1f4bcf9 test_hash(): The test here is different enough from the one in the bug by Tim Peters · 20 years ago
  15. 7897ff0 Add genobject.c by Martin v. Löwis · 20 years ago
  16. 19a02ec Add genobject.c to the MSVC++ 6.0 build. by Raymond Hettinger · 20 years ago
  17. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago
  18. 09e2cb0 [Bug #962631] Fix typo reported by Bryan Blackburn by Andrew M. Kuchling · 20 years ago
  19. 41bd022 SF bug #942952: Weakness in tuple hash by Raymond Hettinger · 20 years ago
  20. 504239f Silence noise in regrtest. by Martin v. Löwis · 20 years ago
  21. e148595 Fixup spacing in an example. by Raymond Hettinger · 20 years ago
  22. 173ecb6 Copy from python-2.3.spec. Incorporate patch #961465: by Martin v. Löwis · 20 years ago
  23. 2f50e90 SF patch 959726: sdist versus SVN by Tim Peters · 20 years ago
  24. 92816de Patch #932930: suggest the use of rawstrings for backslashes. by Martin v. Löwis · 20 years ago
  25. 2a6ba90 Patch #963318: Add support for client-side cookie management. by Martin v. Löwis · 20 years ago
  26. 0a6d0ff Port the dictionary tests from test_types.py to unittest. Collect as much by Walter Dörwald · 20 years ago
  27. cbd0b36 Fix typo (from SF bug #962602) by Walter Dörwald · 20 years ago
  28. 874ebd5 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  29. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  30. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
  31. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 20 years ago
  32. d70ad8a Update docstring for dict.update() to match the new realities. by Walter Dörwald · 20 years ago
  33. 8759090 starting to add comments to explain what's here by Fred Drake · 20 years ago
  34. 80ce6dd The default argument in dict.setdefault() defaults to None. by Walter Dörwald · 20 years ago
  35. c139909 The default argument in dict.setdefault() defaults to None. by Walter Dörwald · 20 years ago
  36. 08678a1 Remove float_compare as per by Michael W. Hudson · 20 years ago
  37. 76b8cc8 Band-aid type fix for by Michael W. Hudson · 20 years ago
  38. 4ccf336 Fill-in the introductory paragraph for the library tour. by Raymond Hettinger · 20 years ago
  39. 846865b Add a further tour of the standard library. by Raymond Hettinger · 20 years ago
  40. a8aebce Follow official recommendation for domain names in examples. by Raymond Hettinger · 20 years ago
  41. 79cddc5 stupid, stupid, stupid... raw_input() already supports readline() if the by Skip Montanaro · 20 years ago
  42. b98a8ba Add example that uses readline.readline(). by Skip Montanaro · 20 years ago
  43. 0dc2310 Exposed readline() function from the readline module. by Skip Montanaro · 20 years ago
  44. ddc819c Make sure sets are printed in sorted order by Raymond Hettinger · 20 years ago
  45. e36894d Updated to reflect new types. by Raymond Hettinger · 20 years ago
  46. 1453e4a * teach repr.repr() about collections.deque() * rename a variable for clarity by Raymond Hettinger · 20 years ago
  47. ba6cd36 * Updated repr.py to handle set() and frozenset(). by Raymond Hettinger · 20 years ago
  48. 83ee795 Add a test to verify an early call to iter() on the outermost for expression. by Raymond Hettinger · 20 years ago
  49. 956e4f7 Clarify when iter() is first called in generator expressions. by Raymond Hettinger · 20 years ago
  50. 8bc81fc Added description for authenticate and namespace by Piers Lauder · 20 years ago
  51. c1e32b6 Fixed IMAP4_SSL read bug introduced by patch 956394 by Piers Lauder · 20 years ago
  52. 8f2b244 Fixed IMAP4_SSL read and readlines code per patch 956394 by Piers Lauder · 20 years ago
  53. 6e1fd2f Improved wording for generator expressions. by Raymond Hettinger · 20 years ago
  54. 059e170 SF bug #949329: sets.Set() --> set() by Raymond Hettinger · 20 years ago
  55. 170a622 Add more docs for generator expressions. by Raymond Hettinger · 20 years ago
  56. ba91b9f Applying SF patch #949329 on behalf of Raymond Hettinger. by Armin Rigo · 20 years ago
  57. 16581c8 Set data pointer to NULL after an error; this keeps the mmap_dealloc() function from trying to do msync(-1);munmap(-1). by Andrew M. Kuchling · 20 years ago
  58. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  59. 285cfcc Make type check work with subclasses by Raymond Hettinger · 20 years ago
  60. 9f15b5c add some notes about the changes to ConfigParser by Fred Drake · 20 years ago
  61. 8290314 ConfigParser: by Fred Drake · 20 years ago
  62. b4c6091 ConfigParser: by Fred Drake · 20 years ago
  63. abc086f ConfigParser: by Fred Drake · 20 years ago
  64. bc12b01 ConfigParser: by Fred Drake · 20 years ago
  65. beddfcb date typo in %changelog by Skip Montanaro · 20 years ago
  66. ad9a7c4 test_alias_nofallback(): Someone broke this test, after 2.3, by by Tim Peters · 20 years ago
  67. e4aeb7d _parsegen(): Add a missing check for NeedMoreData. by Barry Warsaw · 20 years ago
  68. 97b6484 Update the DLL example to work with Py2.4. by Raymond Hettinger · 20 years ago
  69. 2dc0c13 typo - fixes 954030. by Skip Montanaro · 20 years ago
  70. ac606cc forward porting from release23-maint by Barry Warsaw · 20 years ago
  71. 2178a6d test_boundary_in_non_multipart(): Added a test for SF bug # 846938. by Barry Warsaw · 20 years ago
  72. 61e5616 encode_7or8bit(): Clearing out some old patches; iso-2202 is non-ASCII but by Barry Warsaw · 20 years ago
  73. 4e59bc1 readline(): RFC 2046, section 5.1.2 (and partially 5.1) both state that the by Barry Warsaw · 20 years ago
  74. 58eb0fc test_nested_inner_contains_outer_boundary(), test_nested_with_same_boundary(): by Barry Warsaw · 20 years ago
  75. d49f1d6 _structure(): Make sure all output goes the to fp object. by Barry Warsaw · 20 years ago
  76. d0c12af Another evil test from Anthony's suite. This one has an inner part with the by Barry Warsaw · 20 years ago
  77. dce231f A boiled down example from Anthony's MIME torture tests. This one has a by Barry Warsaw · 20 years ago
  78. c3d9316 forward-port 1.17.12.1 by Anthony Baxter · 20 years ago
  79. f0ba764 SF #847346: merge from release23-maint branch: remove misguided by Greg Ward · 20 years ago
  80. 10c6606 SF bug #952866: "can't multiply sequence *by* non-int" by Raymond Hettinger · 20 years ago
  81. 0e371f2 Make sure "del d[n]" is properly supported. Was necessary because the by Raymond Hettinger · 20 years ago
  82. fd3f4fb Windows build number for 2.3.4c1 is 52. by Thomas Heller · 20 years ago
  83. 1cd6e4d fix various descriptions of "ctime" (closes SF patch #870287) by Fred Drake · 20 years ago
  84. 043fff0 minor wording cleanup by Fred Drake · 20 years ago
  85. 09659fb fix error message; closes SF patch #932796 by Fred Drake · 20 years ago
  86. bb066cf fix various typos; thanks, George Yoshida! (closes SF patch #952047) by Fred Drake · 20 years ago
  87. f72de0f add note about the __name__ read-only attribute (closes SF bug #952212) by Fred Drake · 20 years ago
  88. 486cb0a Tests for message/external-body and for duplicate boundary lines. by Barry Warsaw · 20 years ago
  89. b067e62 More boiled down tests from Anthony's big torture suite. by Barry Warsaw · 20 years ago
  90. 769f14a A boiled down message/external-body example from Anthony's torture test. by Barry Warsaw · 20 years ago
  91. bce827b An example with multiple boundary lines. by Barry Warsaw · 20 years ago
  92. d38f448 _parsegen(): Move the message/rfc822 clause to after the by Barry Warsaw · 20 years ago
  93. c312b07 Reverting local change checked in by mistake. by Tim Peters · 20 years ago
  94. 07ce3b7 Changed company name to PSF. Added 2004 to copyright years. by Tim Peters · 20 years ago
  95. 926bc22 Added 2.3.3 and 2.3.4 to the release table. Added 2004 to the list of by Tim Peters · 20 years ago
  96. 5b44cd6 _parsegen(): Watch out for empty epilogues. by Barry Warsaw · 20 years ago
  97. 2e7c832 Fix SF item #876278: Unbounded recursion in modulefinder. by Thomas Heller · 20 years ago
  98. 112f8f4 use tools/getversioninfo to extract the version number from the Python sources by Fred Drake · 20 years ago
  99. 6d340c3 remove assignment to unused variable by Fred Drake · 20 years ago
  100. 3b4ab23 update to reflect the current location of the SF bugs search box by Fred Drake · 20 years ago