1. fe3db7d Work around limitation of Cygwin Perl: To avoid a permission denial, we need by Fred Drake · 22 years ago
  2. b9132a2 Indicate delayed initialization of slots. Suggested by tim.one. by Martin v. Löwis · 22 years ago
  3. 76da0c3 Patch #551008: DL_IMPORT PyBool_FromLong. by Martin v. Löwis · 22 years ago
  4. 4ce71f7 PyObject_Realloc(): If a small block is shrinking, bite the expense of by Tim Peters · 22 years ago
  5. edbffc1 Patch #551009: Initialize array type dynamically. by Martin v. Löwis · 22 years ago
  6. d901832 Remove old deprecated features from the xrange object. by Fred Drake · 22 years ago
  7. e08fda9 Remove all tests that rely on deprecated-in-2.2 features of xrange objects. by Fred Drake · 22 years ago
  8. a030c76 Many minor markup adjustments for consistency. by Fred Drake · 22 years ago
  9. 4d707a5 Remove extra period produced by previous change. by Fred Drake · 22 years ago
  10. a066f46 Patch 550804: Make os.environ.copy() return a copy. by Martin v. Löwis · 22 years ago
  11. e0e890a Added regression tests for xrange object attributes. See SF bug #551285. by Fred Drake · 22 years ago
  12. edb51bb Fix attribute access for the xrange objects. The tp_getattr and tp_getattro by Fred Drake · 22 years ago
  13. 9546772 Correct Moshe's e-mail address by Andrew M. Kuchling · 22 years ago
  14. 2a15980 Note that NameError's message also changed in 2.0 by Andrew M. Kuchling · 22 years ago
  15. e7bd876 Message for NameError has changed by Andrew M. Kuchling · 22 years ago
  16. 71390a9 clarify message when raising TypeError to indicate that float() accepts by Skip Montanaro · 22 years ago
  17. c6a7d7e Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907. by Martin v. Löwis · 22 years ago
  18. 4b27051 Correct information on support for repietition & concatenation for buffer by Fred Drake · 22 years ago
  19. 485f340 Buffer-object repitition and concatenation has worked all along; add a test by Fred Drake · 22 years ago
  20. eb2b833 Added some notes on setting up the documentation tools on Cygwin. by Fred Drake · 22 years ago
  21. 5a55c49 Added more style for major warnings. by Fred Drake · 22 years ago
  22. 0ebacc8 Pickler_clear_memo(): convert to METH_NOARGS. by Fred Drake · 22 years ago
  23. 7f781c9 Add Pickler.clear_memo() so the pickle and cPickle modules are more similar. by Fred Drake · 22 years ago
  24. 56aa628 list_documented_items(): Basic implementation. by Fred Drake · 22 years ago
  25. a65375c Explain what os.read() returns at end of file. by Fred Drake · 22 years ago
  26. 7938fab Add missing right-parenthesis. by Fred Drake · 22 years ago
  27. 5dfc7af Watch out for older XEmacsen for which requiring info-look doesn't by Barry Warsaw · 22 years ago
  28. d268183 moved from Tools/scripts (was only at rev 1.1 - no changes yet - so I simply by Skip Montanaro · 22 years ago
  29. 8c5763f moving into the Doc/tools directory by Skip Montanaro · 22 years ago
  30. 52cc670 Add a note about when the "%r" formatting code was added. by Fred Drake · 22 years ago
  31. 07c639f add enumobject.c to build machinery by Andrew MacIntyre · 22 years ago
  32. e41abab Fred's recent changes to support "-u all" resulted in subset resource by Andrew MacIntyre · 22 years ago
  33. 63c9d50 add enumobject.c to build machinery by Andrew MacIntyre · 22 years ago
  34. af93c4c Added a missing "|" in the grammar productions used in the reference manual by Fred Drake · 22 years ago
  35. 67d687a builtin_zip(): Take a good guess at how big the result list will be, by Tim Peters · 22 years ago
  36. 541703b Typo: whcar_t should be wchar_t. by Thomas Heller · 22 years ago
  37. b803f70 Add some items, and remove a note to myself by Andrew M. Kuchling · 22 years ago
  38. 432425e Small markup adjustments for consistency. by Fred Drake · 22 years ago
  39. a883a3d See discussion at SF bug 547537. by Guido van Rossum · 22 years ago
  40. 81b9251 Mostly in SequenceMatcher.{__chain_b, find_longest_match}: by Tim Peters · 22 years ago
  41. 29c0afc Just added comments, and cleared some XXX questions, related to int by Tim Peters · 22 years ago
  42. 449b5a8 _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt, by Tim Peters · 22 years ago
  43. 8b078f9 Moving pymalloc along. by Tim Peters · 22 years ago
  44. fa8efab _PyObject_GC_New: Could call PyObject_INIT with a NULL 1st argument. by Tim Peters · 22 years ago
  45. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  46. 602f740 SF patch 549375: Compromise PyUnicode_EncodeUTF8 by Tim Peters · 22 years ago
  47. 73364e6 Teach the Windows build about the new enumobject.c file. by Tim Peters · 22 years ago
  48. d3e6678 Slightly expand and clarify the differences between getegid(), getgid(), by Fred Drake · 22 years ago
  49. a7bb2b9 Be more consistent, both internally and with recommended practice. by Fred Drake · 22 years ago
  50. 38f7197 Documentation for the enumerate() function/type. This closes SF patch #547162. by Fred Drake · 22 years ago
  51. 26dd830 Clarify that the strip changes also apply to Unicode. by Guido van Rossum · 22 years ago
  52. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  53. 17afa13 (py-comint-output-filter-function): Put the pop-to-buffer call inside by Barry Warsaw · 22 years ago
  54. 517c7d4 PyNumber_CoerceEx: this took a shortcut (not doing anything) when the by Guido van Rossum · 22 years ago
  55. d451ec1 Clean up uses of some deprecated features. by Fred Drake · 22 years ago
  56. 89e3ee0 If Py_OptimizeFlag is false then always evaluate assert conditions, don't by Neil Schemenauer · 22 years ago
  57. 9364698 Make sure that tp_free frees the int the same way as tp_dealloc would. by Guido van Rossum · 22 years ago
  58. cf22c82 Fix typo in the setup of interpreter-mode-alist. by Barry Warsaw · 22 years ago
  59. 8849161 SF patch #510288 by Kevin J. Butler, mod'd by Barry. This provides by Barry Warsaw · 22 years ago
  60. c95cc87 Clean up the layout of the bool_as_number struct initializer. by Guido van Rossum · 22 years ago
  61. 4aab68e (py-execute-region): Alexander Schmolck points out that leading by Barry Warsaw · 22 years ago
  62. 69d31b7 Pass the full pathname to MSVC when compiling a debug version. This by Thomas Heller · 22 years ago
  63. 378498d Append the PC specific include 'PC' and library 'PCBuild' directories by Thomas Heller · 22 years ago
  64. e650080 Fix trivial typo. by Thomas Heller · 22 years ago
  65. 13caba3 (py-comint-output-filter-function): Add a pop-to-buffer call so you by Barry Warsaw · 22 years ago
  66. 56bd2ed (py-shell-hook): A new hook variable, run at the end of py-shell. by Barry Warsaw · 22 years ago
  67. 65300f1 Regenerated. by Jack Jansen · 22 years ago
  68. 8da4b59 Fix a small mistake and complete some function prototypes. SF Patch #547813. by Thomas Heller · 22 years ago
  69. 3b04d63 Add more tests for abstract isinstance() and issubclass(). by Neil Schemenauer · 22 years ago
  70. 1e33ffa test_resource has no chance of running on Windows. by Tim Peters · 22 years ago
  71. e12cda9 test_mmap started breaking on Windows, only when run after test_bsddb. by Tim Peters · 22 years ago
  72. 906569d Unit tests for the changes in abstract.c version 2.101. The debug by Barry Warsaw · 22 years ago
  73. 033b79c Regenerated. by Jack Jansen · 22 years ago
  74. f16951c abstract_get_bases(): Clarify exactly what the return values and by Barry Warsaw · 22 years ago
  75. 3adf8d1 Converted to use re in stead of regex and regsub (finally:-). by Jack Jansen · 22 years ago
  76. 5ca5374 Rewrote the PyUnit description so that it now recommends to use by Barry Warsaw · 22 years ago
  77. 99d17006 Add text about circular references caused by storing frames in local by Fred Drake · 22 years ago
  78. 95df3fd Second part of fix for #493826: regenerated suite modules so errn exists but == 0 doesn't signal an error. by Jack Jansen · 22 years ago
  79. 1898353 First part of fix for #493826: if 'errn' key exists in return value this doesn't necesarily signal an error, only if the value is non-zero it does. This by Jack Jansen · 22 years ago
  80. 1b0bf9b Ignore SIGXFSZ. by Jeremy Hylton · 22 years ago
  81. 74ce77f Add tests for the recent resource module change. by Jeremy Hylton · 22 years ago
  82. d95efe4 Check for overflow errors in setrlimit(), and reflow a long line. by Jeremy Hylton · 22 years ago
  83. ed9e453 Minor change to an index entry. by Fred Drake · 22 years ago
  84. c4ad0bc Clarify return value of PyLong_AsLongLong(). by Jeremy Hylton · 22 years ago
  85. 656b735 Backport of 1.6.4.2.2.3 from release22-maint branch. by Jack Jansen · 22 years ago
  86. d92b7a0 Updated URL. by Jack Jansen · 22 years ago
  87. 601b2fd Backport of select parts of release22-maint (up to 1.38.4.2.2.3). by Jack Jansen · 22 years ago
  88. 8570013 Whitespace normalization. Unka Timmy would be proud. by Barry Warsaw · 22 years ago
  89. b957bc3 Clarify the return value of PyObject_IsInstance(). by Fred Drake · 22 years ago
  90. 106c1a0 WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. by Fred Drake · 22 years ago
  91. 256705b SF patch 546244 by John Williams: add Text.dump() method. by Guido van Rossum · 22 years ago
  92. 4e1dd7d Add warning about the HP PA-RISC 2.0 C compiler's optimizer. by Guido van Rossum · 22 years ago
  93. 1476c27 There was a non-ascii character in the source. Replaced by a hex escape. by Jack Jansen · 22 years ago
  94. ae7639d whitespace fixup. test__all__ and test_sundry were failing by Anthony Baxter · 22 years ago
  95. 4ce6b35 don't fail if the audio device is busy, just skip. SF patch 545486 by Anthony Baxter · 22 years ago
  96. 8388895 SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL) closes SF #514433 by Anthony Baxter · 22 years ago
  97. 0494955 Merge in Skip's last few updates w.r.t. py-help-at-point: by Barry Warsaw · 22 years ago
  98. 29a90f0 Some contributions and ideas by Alexander Schmolck: add a keybinding by Barry Warsaw · 22 years ago
  99. 030a5ce unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (which by Tim Peters · 22 years ago
  100. 32b069c SF bug 546078: IDLE calltips cause application error. by Tim Peters · 22 years ago