1. 4e6a3fe Remove spurious space before a period. by Fred Drake · 23 years ago
  2. d55657b Added comments before recently added/assigned slots in the type object, by Fred Drake · 23 years ago
  3. 88dcf03 Add 'state' as a get/set attribute to spamlist. This serves as an example. by Guido van Rossum · 23 years ago
  4. e6b90ea Add 'state' as a read-only attribute to spamdict. This serves as an example. by Guido van Rossum · 23 years ago
  5. 23cc2b4 PyMethod_Type: add a tp_descr_get slot function to ensure proper by Guido van Rossum · 23 years ago
  6. b5a136b Add a test to verify that bound methods work correctly. by Guido van Rossum · 23 years ago
  7. f95dd0a Fix portability problems with glibc 2.0, as reported in #449157. by Martin v. Löwis · 23 years ago
  8. 834a85a Use the "howto" document class rather than the "manual" class. by Fred Drake · 23 years ago
  9. 27413a5 Properly mark attribute names in the table. by Fred Drake · 23 years ago
  10. 3d05161 Change the generated markup so that attribute names are properly marked. by Fred Drake · 23 years ago
  11. 13130bc Use the abstract object interfaces when digging around in module objects by Fred Drake · 23 years ago
  12. 94a7eba Note addition of cleanfuture.py by Andrew M. Kuchling · 23 years ago
  13. b053209 Fix typo by Andrew M. Kuchling · 23 years ago
  14. 42caf3f Fix small markup consistency nits. by Fred Drake · 23 years ago
  15. 591cbed MacOSX: if we're building without --enable-toolbox-glue don't attempt to by Jack Jansen · 23 years ago
  16. df82e58 On OSX we should not pass the -shared option to ld: it make the build by Jack Jansen · 23 years ago
  17. 31b5323 Don't remove non-directories from sys.path on the mac: files by Jack Jansen · 23 years ago
  18. 591f71b New, larger installer bitmap from Erik van Blokland. Added more by Tim Peters · 23 years ago
  19. ebb7133 Fix typo in module docstring. by Tim Peters · 23 years ago
  20. 0afb609 Add blurb about cleanfuture.py. Fix misspelling in an older item. by Tim Peters · 23 years ago
  21. e561463 Move one of the tests into the "PEP 255" section, to reflect a change in by Tim Peters · 23 years ago
  22. e578a63 Oops, forgot to check in configure. by Jack Jansen · 23 years ago
  23. b6e9cad Lots of changes in the framework support: by Jack Jansen · 23 years ago
  24. e925faf With WITH_NEXT_FRAMEWORK defined we now also expect a normal Python by Jack Jansen · 23 years ago
  25. f5bf77c update simple explanation of parseFile() by Jeremy Hylton · 23 years ago
  26. 76f42ac First day's progress on documentation by Jeremy Hylton · 23 years ago
  27. ce575ba Fix a minor typo and mark an exception name that was missed. by Fred Drake · 23 years ago
  28. c0cf726 Add material about the "r" and "u" prefixes for string literals; should by Fred Drake · 23 years ago
  29. 0cac5f6 Added some examples of table markup. by Fred Drake · 23 years ago
  30. 9272b14 Fix typo in astgen script by Jeremy Hylton · 23 years ago
  31. 3e2aca4 Add information about __floordiv__() and __truediv__() methods for by Fred Drake · 23 years ago
  32. 4dd64ab Non-function fields, like tp_dictoffset and tp_weaklistoffset, should by Guido van Rossum · 23 years ago
  33. 481081e Fix SF bug [ #450909 ] __future__.division fails at prompt by Jeremy Hylton · 23 years ago
  34. 80e3675 Add a test for a weird bug I just discovered: a dynamic subclass by Guido van Rossum · 23 years ago
  35. d3ba10f Clarify the prompt in an example. This closes SF bug #450633. by Fred Drake · 23 years ago
  36. 7713ac2 Regenerated from new ast.txt and new astgen.py by Jeremy Hylton · 23 years ago
  37. eef6590 Add getChildNodes() method to Node by Jeremy Hylton · 23 years ago
  38. 34aeeff Add Yield node by Jeremy Hylton · 23 years ago
  39. 9b3be7f Document the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  40. 033daa4 Test the new semantics for setting and deleting a function's __dict__ by Barry Warsaw · 23 years ago
  41. 142865c func_getattro(), func_setattro(): Implement the new semantics for by Barry Warsaw · 23 years ago
  42. 5ef99a0 Describe the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  43. 680cabb Add "exceptions" to the list of fundamental modules created by Py_Initialize(). by Fred Drake · 23 years ago
  44. 280f725 Insert omitted "the". by Fred Drake · 23 years ago
  45. bf781a9 Add the smtpd module to the list of undocumented modules; Barry needs to by Fred Drake · 23 years ago
  46. b9c1d3d reload(exceptions) should not raise an ImportError, but should act by Barry Warsaw · 23 years ago
  47. 9288338 Fixed typo in comment leading up to _PyImport_FixupExtension(). by Barry Warsaw · 23 years ago
  48. 5821bc5 Py_Initialize(): Apply patch by Jürgen Hermann to call by Barry Warsaw · 23 years ago
  49. 0460106 Repair Unix-specific assumptions that caused this to fail on Windows. by Tim Peters · 23 years ago
  50. 406d46e found_terminator(): Add a debug print showing the data. by Barry Warsaw · 23 years ago
  51. 3a28ca8 Nick Mathewson: test suite for the class browser support module. by Fred Drake · 23 years ago
  52. 03f7a70 Nick Mathewson: Make sure the recursion is handled properly. by Fred Drake · 23 years ago
  53. 6943a29 David Goodger <dgoodger@atsautomation.com>: by Fred Drake · 23 years ago
  54. 97dbec9 Remove redundant import (PyChecker). by Guido van Rossum · 23 years ago
  55. 4a5555b Remove unused variable 'imports' from readmodule_ex(). by Guido van Rossum · 23 years ago
  56. 8f15bd8 Remove redundant 'import string' (PyChecker). by Guido van Rossum · 23 years ago
  57. ef8f4de Remove redundant imports (PyChecker). by Guido van Rossum · 23 years ago
  58. a79bbac Remove redundant 'import sys' (PyChecker). by Guido van Rossum · 23 years ago
  59. f9f4881 Remove two redundant statements (PyChecker). by Guido van Rossum · 23 years ago
  60. bfbc18d Remove redundant assignment l = [] from poll3() -- copy-and-paste error. by Guido van Rossum · 23 years ago
  61. f3b9430 Update a beopen.com e-mail by Andrew M. Kuchling · 23 years ago
  62. 5996825 Update a few references to beopen.com by Andrew M. Kuchling · 23 years ago
  63. 392aa1d Update e-mail address by Andrew M. Kuchling · 23 years ago
  64. 8710681 Commenting out the getfillable() method -- it's broken, and nobody by Guido van Rossum · 23 years ago
  65. 8837814 Add a name by Andrew M. Kuchling · 23 years ago
  66. 7c2cf73 Remove redefinition of has_option() method by Andrew M. Kuchling · 23 years ago
  67. 8ea9227 Remove empty __init__ (PyChecker) by Andrew M. Kuchling · 23 years ago
  68. f31d313 Remove redefinition of writelines() method Remove unused variable and import by Andrew M. Kuchling · 23 years ago
  69. 77f9caf Remove unused variable (PyChecker) by Andrew M. Kuchling · 23 years ago
  70. 1f877ef Remove some dead code (PyChecker) by Andrew M. Kuchling · 23 years ago
  71. 86c7e22 Add forgotten import (PyChecker) by Andrew M. Kuchling · 23 years ago
  72. e7abf97 Remove unused import (PyChecker) by Andrew M. Kuchling · 23 years ago
  73. 6be424f Remove redundant import by Andrew M. Kuchling · 23 years ago
  74. 994b51e Capture exception message (PyChecker) by Andrew M. Kuchling · 23 years ago
  75. a49e0a0 Remove unused imports (PyChecker) by Andrew M. Kuchling · 23 years ago
  76. 3e44248 Remove unused variable by Andrew M. Kuchling · 23 years ago
  77. 118aa53 Fix malformed line (PyChecker) by Andrew M. Kuchling · 23 years ago
  78. 49fa2bd Fix two bugs discovered by PyChecker. (I cannot test these, but I'm by Guido van Rossum · 23 years ago
  79. 246c425 Fix for NameError caught by PyChecker. by Andrew M. Kuchling · 23 years ago
  80. fd6608b Fix typo (PyChecker) by Andrew M. Kuchling · 23 years ago
  81. fee3126 Catch curses.error instead of a non-existent global (PyChecker) Edit comment by Andrew M. Kuchling · 23 years ago
  82. 40ea617 Remove redundant import by Andrew M. Kuchling · 23 years ago
  83. 3055ad2 + A msg on c.l.py reminded me that docstrings can be implicitly catenated. by Tim Peters · 23 years ago
  84. 33277c7 further work on font config and general feel improvements by Steven M. Gava · 23 years ago
  85. 5e824c3 SF patch #445412 extract ndiff functionality to difflib, from David Goodger. by Tim Peters · 23 years ago
  86. 39f77bc Modify _Set to support iteration. by Jeremy Hylton · 23 years ago
  87. 910d7d4 Remove much dead code from ceval.c by Jeremy Hylton · 23 years ago
  88. f65b1a1 Bump size of sprintf buffer. Suggested by Alex Coventry. by Martin v. Löwis · 23 years ago
  89. b704238 Tool to delete (or just rewrite parts of) obsolete future statements. by Tim Peters · 23 years ago
  90. d307740 - Expand test for dynamic objects. by Guido van Rossum · 23 years ago
  91. 8e24818 Make dynamic types work as intended. Or at least more so. by Guido van Rossum · 23 years ago
  92. a45da92 Make the output of tests skipped readable (i.e., deliberately break it by Tim Peters · 23 years ago
  93. 8de8680 Temporary stop-gap fix for dynamic classes, so they pass the test. by Guido van Rossum · 23 years ago
  94. 9d4fe42 dynamics(): add tests for dynamic *instances* (which are currently by Guido van Rossum · 23 years ago
  95. 08a6403 Test the unary operator changes to the compiler by Jeremy Hylton · 23 years ago
  96. f73e30c Add the list of expected skips for Linux 2.x. Restructured the code a by Guido van Rossum · 23 years ago
  97. a2be2d6 Move line; reported on python-dev by Mark Favas (thanks!). by Tim Peters · 23 years ago
  98. d5e5a2a SF Patch [ 429024 ] deal with some unary ops at compile time by Jeremy Hylton · 23 years ago
  99. b5b7b78 Teach regrtest which tests we *expect* to skip on Win32. Please teach it by Tim Peters · 23 years ago
  100. 28ccc24 removed some cruft by Steven M. Gava · 23 years ago