1. b053209 Fix typo by Andrew M. Kuchling · 23 years ago
  2. 0afb609 Add blurb about cleanfuture.py. Fix misspelling in an older item. by Tim Peters · 23 years ago
  3. 9b3be7f Document the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  4. 5e824c3 SF patch #445412 extract ndiff functionality to difflib, from David Goodger. by Tim Peters · 23 years ago
  5. c173137 Derived from SF patch #446899 Permit import of .pyw under Windows, from by Tim Peters · 23 years ago
  6. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  7. d627791 Moved the news items about C API topics down to the C API section. by Marc-André Lemburg · 23 years ago
  8. 48dbfe9 Add news item about Unicode API name mangling. by Marc-André Lemburg · 23 years ago
  9. 888fac0 Add news items. by Marc-André Lemburg · 23 years ago
  10. 66b6e19 Patch #416224: add readline completion to cmd.Cmd. by Martin v. Löwis · 23 years ago
  11. b7cea63 Add item about the new xml.sax.saxutils.quoteaddr() function. by Fred Drake · 23 years ago
  12. 20f51a7 Get started on 2.2a2 NEWS. by Tim Peters · 23 years ago
  13. 960fdf9 Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase by Fred Drake · 23 years ago
  14. f0473d5 Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. by Martin v. Löwis · 23 years ago
  15. 11a0d10 Typo repair. by Tim Peters · 23 years ago
  16. 55a7899 - Add news about generators. by Guido van Rossum · 23 years ago
  17. c7e4aca Add xmlrpc. by Guido van Rossum · 23 years ago
  18. 643d391 News about xrange(). by Guido van Rossum · 23 years ago
  19. 51acc8d Add an item about the extension to {}.update() to allow generic by Barry Warsaw · 23 years ago
  20. d6d010b Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into by Tim Peters · 23 years ago
  21. 52e155e Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup. by Tim Peters · 23 years ago
  22. 83213cc Add new built-in 'help' which invokes pydoc.help (with a twist). by Guido van Rossum · 23 years ago
  23. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  24. 7b9542a Initial support for 'q' and 'Q' struct format codes: for now, only in by Tim Peters · 23 years ago
  25. c341580 Added quopri codec. by Guido van Rossum · 23 years ago
  26. ebf94db Report on fnmatch.filter. by Martin v. Löwis · 23 years ago
  27. eb28ef2 New collision resolution scheme: no polynomials, simpler, faster, less by Tim Peters · 23 years ago
  28. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  29. 15d4929 Implement an old idea of Christian Tismer's: use polynomial division by Tim Peters · 23 years ago
  30. 1af03e9 Change list.extend() error msgs and NEWS to reflect that list.extend() by Tim Peters · 23 years ago
  31. ffd674d - calendar.py uses month and day names based on the current locale. by Barry Warsaw · 23 years ago
  32. 12e74b3 Added NEWS item for the UTF-16 change. by Marc-André Lemburg · 23 years ago
  33. fab96cc Add NEWS item for new string methods. by Marc-André Lemburg · 23 years ago
  34. 2e0a654 Add warnings to the strop module, for to those functions that really by Guido van Rossum · 23 years ago
  35. 58e0a8c SF patch #418147 Fixes to allow compiling w/ Borland, from Stephen Hansen. by Tim Peters · 23 years ago
  36. 95b3f78 pprint's workhorse _safe_repr() function took time quadratic in the # of by Tim Peters · 23 years ago
  37. 1bd797a Fix a typo, consistently spell ASCII in all caps, and insert blank by Guido van Rossum · 23 years ago
  38. a814db5 SF bug[ #423781: pprint.isrecursive() broken. by Tim Peters · 23 years ago
  39. 2a0af79 Add mention of the default file system encoding for Windows. by Mark Hammond · 23 years ago
  40. 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 23 years ago
  41. d85e102 Variant of patch #423262: Change module attribute get & set by Tim Peters · 23 years ago
  42. 95bf939 SF bug #422121 Insecurities in dict comparison. by Tim Peters · 23 years ago
  43. 61dff2b Blurb about the increased precision of float literals in .pyc/.pyo files. by Tim Peters · 23 years ago
  44. e63415e SF patch #421922: Implement rich comparison for dicts. by Tim Peters · 23 years ago
  45. 8572b4f Generalize zip() to work with iterators. by Tim Peters · 23 years ago
  46. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  47. 1434299 Remove redundant line. by Tim Peters · 23 years ago
  48. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  49. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  50. 432b42a Mark string.join() as done. Turns out string_join() works "for free" now, by Tim Peters · 23 years ago
  51. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  52. 3e360db Add TODO item about x in y -- this should use iterators too, IMO. by Guido van Rossum · 23 years ago
  53. 3e06757 Added reminders to make some remaining functions iterator-friendly. Feel by Tim Peters · 23 years ago
  54. 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  55. 4e9afdc Generalize map() to work with iterators. by Tim Peters · 23 years ago
  56. c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  57. 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 23 years ago
  58. 1031582 Add more news about iterators. by Guido van Rossum · 23 years ago
  59. f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 23 years ago
  60. ffe13be Noted what's new in 2.1 (final). by Guido van Rossum · 23 years ago
  61. 5b08f13 Added news for 2.1c2. by Guido van Rossum · 23 years ago
  62. 4fb6036 Note additions to pydoc and pstats. by Guido van Rossum · 23 years ago
  63. c993272 Note that __debug__ assignments are legal again. by Guido van Rossum · 23 years ago
  64. 34d37dc Noted the improved RISCOS port and the new Unixware 7 port. by Guido van Rossum · 23 years ago
  65. 11e89c7 Added news about the updated python-mode.el by Barry Warsaw · 23 years ago
  66. 68ad64a Remove the backed-out version requirement by Andrew M. Kuchling · 23 years ago
  67. f626db7 News items for my recent checkins by Jeremy Hylton · 23 years ago
  68. 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 23 years ago
  69. 8e9972c Added news items for the Distutils by Andrew M. Kuchling · 23 years ago
  70. 053ae35 Add some news for 2.1b2. I'd still like someone else to add news by Guido van Rossum · 23 years ago
  71. 0411f6f Add section on 2.1b2. Report the addition of the Tix module. by Martin v. Löwis · 23 years ago
  72. e3955a8 Add some more info about pydoc. (Can you see I'm excited?) by Guido van Rossum · 23 years ago
  73. 9d0fbde Add big news item about nested scopes, __future__, and compile-time warnings. by Guido van Rossum · 23 years ago
  74. 9089b27 ROSCOS change. by Guido van Rossum · 23 years ago
  75. 2fe289a Thank Jason Tishler and Steven Majewski for their help in the Cygwin and by Tim Peters · 23 years ago
  76. 1eff796 Added blurbs about difflib, doctest and Windows import (PEP 235). by Tim Peters · 23 years ago
  77. d6a1d79 Mention pydoc by Andrew M. Kuchling · 23 years ago
  78. a35c688 Add Vladimir Marangozov's object allocator. It is disabled by default. This by Neil Schemenauer · 23 years ago
  79. 2a5130e Document XML changes. by Martin v. Löwis · 23 years ago
  80. debc352 Mention the removal of soundex.c by Andrew M. Kuchling · 23 years ago
  81. 25a9ce3 Take a tour of hell's seedier neighborhoods to try to make winsound.Beep() by Tim Peters · 23 years ago
  82. 3389f19 Fixed misspelling. by Tim Peters · 23 years ago
  83. 1449585 Bug #132921: None treated differently in cmp() / sort() in 2.1a2. by Tim Peters · 23 years ago
  84. e214baa Fix binfmt_register documentation to always register the right magic. by Martin v. Löwis · 23 years ago
  85. d66595f Renamed _testXXX to _testcapiXXX. Jack is my hero -- good call! by Tim Peters · 23 years ago
  86. ba38123 Clarify the news item about "from M import X" if "M is not a real by Guido van Rossum · 23 years ago
  87. b16c56f Teach Windows build and installer about new _symtable module/DLL. by Tim Peters · 23 years ago
  88. d6b1cf9 Fix spelling errors. by Jeremy Hylton · 23 years ago
  89. 9ea17ac Patch derived from Trent's 101162: a Python/C API testing framework. by Tim Peters · 23 years ago
  90. 4c4fda0 add info about Grant Edwards' raw packet support by Jeremy Hylton · 23 years ago
  91. 0072d5a continue now allowed in try block by Jeremy Hylton · 23 years ago
  92. 4589bd8 Add item about nested scopes. by Jeremy Hylton · 23 years ago
  93. fb9d712 Added comments about the weak reference support. by Fred Drake · 23 years ago
  94. 0de88fc Change random.seed() so that it can get at the full range of possible by Tim Peters · 23 years ago
  95. 30dbd14 Document the two changes to the mailbox.py module: by Barry Warsaw · 23 years ago
  96. ee826f8 Docs for new Windows zlib build procedure. by Tim Peters · 23 years ago
  97. 69c3279 add note about two kinds of illegal imports that are now checked by Jeremy Hylton · 23 years ago
  98. 6af0ce0 Added news of function comparison and hashing by identity by Moshe Zadka · 23 years ago
  99. 40ead76 Added news about repr(string). by Tim Peters · 23 years ago
  100. d52269b Fix bugs introduced by rewrite (in particular, time-based initialization by Tim Peters · 23 years ago