1. 9020bce - _filename_to_abs() didn't cater for .. components in the pathname. Fixed. by Jack Jansen · 24 years ago
  2. 97df7b6 The test used int(time.time()) to get a random number, but this doesn't work on the mac (where times are bigger than ints). Changed to int(time.time()%1000000). by Jack Jansen · 24 years ago
  3. 1bdcadd An import MacOS was missing after the code-rearranging. Added. by Jack Jansen · 24 years ago
  4. a37171d Test by Martin v. Loewis for the new UTF-16 codec handling of BOM marks. by Marc-André Lemburg · 24 years ago
  5. 92b550c This patch by Martin v. Loewis changes the UTF-16 codec to only by Marc-André Lemburg · 24 years ago
  6. 8c78d3a write(): It's been generally agreed on the i18n-sig that the docstring by Barry Warsaw · 24 years ago
  7. 6016e39 Document the new encodestring() and decodestring() functions. Also, by Barry Warsaw · 24 years ago
  8. 92c5bdb Fixed -D emulation for symbols with a value, as specified with the define_macros Extension argument. by Just van Rossum · 24 years ago
  9. 7069763 A unittest-based test for the quopri module. by Barry Warsaw · 24 years ago
  10. 9b630a5 Better support for RFC 1521 quoted-printable specification, along with by Barry Warsaw · 24 years ago
  11. e275c42 (python-font-lock-keywords): Add "yield" as a keyword to support the by Barry Warsaw · 24 years ago
  12. 4e42561 Added a MACHDEP_OBJS to the python link. Use this on MacOSX to include by Neil Schemenauer · 24 years ago
  13. c49e5b7 Added a MACHDEP_OBJS to the python link. Use this on MacOSX to include by Jack Jansen · 24 years ago
  14. 82ac8d1 Taught IDLE's autoident parser that "yield" is a keyword that begins a by Tim Peters · 24 years ago
  15. 4637668 Updated keyword.py for "yield". by Tim Peters · 24 years ago
  16. ff0a2bb Somebody checked this in w/ an ambiguous tab/space mix (reported by Mark Favas). by Tim Peters · 24 years ago
  17. fd4c9e8 (py-continuation-offset): New variable which controls how much to by Barry Warsaw · 24 years ago
  18. 3eec38a Added "i" and "l" to the list of std-mode struct codes that don't range- by Tim Peters · 24 years ago
  19. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 24 years ago
  20. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 24 years ago
  21. 888aa26 [Bug #433047, reported by Armin Rigo] Remove extra 'i' character in by Andrew M. Kuchling · 24 years ago
  22. 66eed24 Add some information on the use of \verbatiminput to display sources from by Fred Drake · 24 years ago
  23. 183a2f2 Fix SF bug #433904 (Alex Martelli) - all s_* methods return None only. by Guido van Rossum · 24 years ago
  24. f3b3074 Patch #413171: Implement get, setdefault, update in terms of by Martin v. Löwis · 24 years ago
  25. fa9e273 Clarification in the fp appendix suggested on c.l.py by Michael Chermside. by Tim Peters · 24 years ago
  26. 4157dd5 Fix for bug [ #433047 ] missing args to PyArg_ParseTuple by Marc-André Lemburg · 24 years ago
  27. a85e2c8 SF patch #433619, by Michel Pelletier: by Guido van Rossum · 24 years ago
  28. fb73bb1 Synchronize with 1.13 of PyXML: by Martin v. Löwis · 24 years ago
  29. d083839 Instead of initializing & interning the strings passed to the profile by Fred Drake · 24 years ago
  30. 70128a1 PyLong_{As, From}VoidPtr: cleanup, replacing assumptions in comments with by Tim Peters · 24 years ago
  31. 918f2c7 Document that filter is added in 2.2. by Martin v. Löwis · 24 years ago
  32. 83c9edc Fix error in comment, and in test_long_api and test_longlong_api remove by Tim Peters · 24 years ago
  33. c605784 dict_repr: Reuse one of the int vars (minor code simplification). by Tim Peters · 24 years ago
  34. 52e155e Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup. by Tim Peters · 24 years ago
  35. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 24 years ago
  36. 239508c SF bug 433228: repr(list) woes when len(list) big by Tim Peters · 24 years ago
  37. 57e52ef Implement the \verbatiminput LaTeX macro; this contains more magic than by Fred Drake · 24 years ago
  38. 54d10fd Add a version annotation for the Q and q format codes. by Fred Drake · 24 years ago
  39. 2b30524 Forward-port revision 2.24.2.4 from the release21-maint branch: by Thomas Wouters · 24 years ago
  40. b269700 Note that 2.0.1 is also a PSF release. (Gregor Hoffleit, SF #433223.) by Guido van Rossum · 24 years ago
  41. cf37dfc Change IS_LITTLE_ENDIAN macro -- a little faster now. by Tim Peters · 24 years ago
  42. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 24 years ago
  43. 8fcd4b5 Fix an improperly placed comma. by Fred Drake · 24 years ago
  44. ede0509 _PyLong_AsByteArray: simplify the logic for dealing with the most- by Tim Peters · 24 years ago
  45. ce9de2f PyLong_From{Unsigned,}Long: count the # of digits first, so no more space by Tim Peters · 24 years ago
  46. ff70d3c Fixed typo in comment. by Tim Peters · 24 years ago
  47. e7c1f9b Add tests of PyLong_{As,From}{Unsigned,}Long. These are very much like by Tim Peters · 24 years ago
  48. 17e17d4 Generalize the new qQ std-mode tests to all int codes (bBhHiIlLqQ). by Tim Peters · 24 years ago
  49. f251d06 _PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No by Tim Peters · 24 years ago
  50. 05607ad _PyLong_AsByteArray: Don't do the "delicate overflow" check unless it's by Tim Peters · 24 years ago
  51. 898cf85 _PyLong_AsByteArray: added assert that the input is normalized. This is by Tim Peters · 24 years ago
  52. 9cb0c38 PyLong_As{Unsigned,}LongLong: fiddled final result casting. by Tim Peters · 24 years ago
  53. 42107c5 Record Windows buildno for 2.0.1c1. by Tim Peters · 24 years ago
  54. 464fe3a Temporarily disable the message to stderr. Jeremy will know what to do by Marc-André Lemburg · 24 years ago
  55. 13a0172 Got rid of mactoolboxglue.c by Jack Jansen · 24 years ago
  56. 0c99575 Fixed an error in the signature of the QdRGB converter routines. by Jack Jansen · 24 years ago
  57. da9c5b3 The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL. by Tim Peters · 24 years ago
  58. d1a7da6 longobject.c: by Tim Peters · 24 years ago
  59. 91621db The merest start of a test for the PyLong_{As,From}{Unsigned,}LongLong() by Tim Peters · 24 years ago
  60. 8bc84b4 _PyLong_{As,From}ByteArray: Minor code rearrangement aimed at improving by Tim Peters · 24 years ago
  61. 83213cc Add new built-in 'help' which invokes pydoc.help (with a twist). by Guido van Rossum · 24 years ago
  62. da4dbc3 Removed the Python version from the PYTHONHOMEHELP string. It was by Marc-André Lemburg · 24 years ago
  63. 66a0a0a Make the option processing more robust. by Fred Drake · 24 years ago
  64. 8c2133d Fix for bug #432384: Recursion in PyString_AsEncodedString? by Marc-André Lemburg · 24 years ago
  65. 4a6c5c5 Fixed reference to table notes for {}.keys() and {}.items() -- these by Fred Drake · 24 years ago
  66. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 24 years ago
  67. ac4797a Make copy, cut and paste events case insensitive. Reported by Patrick by Guido van Rossum · 24 years ago
  68. 2a9b367 Two new private longobject API functions, by Tim Peters · 24 years ago
  69. 0b9bc20 Add the appropriate availability annotations for the popen*() family of by Fred Drake · 24 years ago
  70. 2d4e077 Trimmed trailing whitespace. by Tim Peters · 24 years ago
  71. 3023f78 Simplify some convolution by simply not recognizing 'q' and 'Q' at all by Tim Peters · 24 years ago
  72. be80085 Make clear in the docstring that "std" applies to both size and alignment, by Tim Peters · 24 years ago
  73. 819bb2c Protect the use of the VWERASE symbol by an #ifdef, it's apparently missing by Thomas Wouters · 24 years ago
  74. 046f4d8 Fixed parameter order for os.popen2(), os.popen3(), and os.popen(4). Added by Fred Drake · 24 years ago
  75. c115835 Fix recent changes so that this section will format again. by Fred Drake · 24 years ago
  76. c533edc Renamed some stuff to tell the truth about what it does. by Tim Peters · 24 years ago
  77. 7b9542a Initial support for 'q' and 'Q' struct format codes: for now, only in by Tim Peters · 24 years ago
  78. fcc54ca Added a missing cast to the hashfunc initializer. by Jack Jansen · 24 years ago
  79. 0bb580d SF bug 431772: traceback.print_exc() causes traceback by Tim Peters · 24 years ago
  80. 07c1922 annoying whitespace inconsistency by Peter Schneider-Kamp · 24 years ago
  81. 2a7f384 SF bug 430991: wrong co_lnotab by Tim Peters · 24 years ago
  82. eefa964 Cast the result of xxxPyCObject_Import to PycStringIO_CAPI*. by Martin v. Löwis · 24 years ago
  83. 0163d6d Patch #424475: Speed-up tp_compare usage, by special-casing the common by Martin v. Löwis · 24 years ago
  84. 7bc5071 Fix the attributions for the new floating point text. by Fred Drake · 24 years ago
  85. 8c27d99 Added credits in the right places. by Fred Drake · 24 years ago
  86. 417d667 Text from Tim & Guido discussing floating point arithmetic and what users by Fred Drake · 24 years ago
  87. 1dc98c4 add warning about situation where code may be executed twice, once when by Skip Montanaro · 24 years ago
  88. 62f9d7c In the section on extending the profiler, add some additional discussion by Fred Drake · 24 years ago
  89. 904aa7b call_trace(): Add an additional parameter -- pointer to a PyObject* by Fred Drake · 24 years ago
  90. edb5ffb Performance improvements to the profiler: by Fred Drake · 24 years ago
  91. 13b8bc5 Patch #429957: Add support for cp1140, which is identical to cp037, by Martin v. Löwis · 24 years ago
  92. e2ccb89 Document filter. by Martin v. Löwis · 24 years ago
  93. fbb2b4c check in for patch #430846 by Peter Schneider-Kamp · 24 years ago
  94. a4debff Patch #430754: Makes ftpmirror.py .netrc aware by Martin v. Löwis · 24 years ago
  95. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 24 years ago
  96. 2c07195 Previous check-in was by mistake, undo it. by Martin v. Löwis · 24 years ago
  97. d895b20 This closes bug #430849 (internal error produced by binascii.a2b_base64) by Peter Schneider-Kamp · 24 years ago
  98. 22adac5 Patch #416220: Fix misplaced paren. by Martin v. Löwis · 24 years ago
  99. 1d88c59 Acknowledge the existence of the 'platform' file, generated by the by Guido van Rossum · 24 years ago
  100. 2a9bda9 Typo: "descrition" --> "description" by Fred Drake · 24 years ago