1. 3ecdb25 Fix for bug #966623 - classes created with type() in an exec(, {}) don't by Anthony Baxter · 20 years ago
  2. 51ffac6 dump HAVE_FOPENRF stuff - obsolete by Skip Montanaro · 20 years ago
  3. a5616d2 Respect a module's __all__ attribute. Closes #969938. by Skip Montanaro · 20 years ago
  4. c978633 Futher improvements to frozenset hashing (based on Yitz Gale's battery of by Raymond Hettinger · 20 years ago
  5. 27e403e Fixups to the hash function for frozensets. by Raymond Hettinger · 20 years ago
  6. 57c2d93 Add a final permutation step to the tuple hash function. by Raymond Hettinger · 20 years ago
  7. bce036b Convert test_heapq.py to unittests. by Raymond Hettinger · 20 years ago
  8. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 20 years ago
  9. 7d01966 Defining Py_GCC_ATTRIBUTE finds even some more undocumented functions. by Thomas Heller · 20 years ago
  10. 4369b59 Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT. by Thomas Heller · 20 years ago
  11. da4513a make a reference to the SimpleHTTPServer module a hyperlink to the docs by Fred Drake · 20 years ago
  12. 2adf210 Ensure path is initialized to prevent freeing random memory by Neal Norwitz · 20 years ago
  13. 4182cfd test_devnull(): Use assertEqual() instead of an assert stmt. by Tim Peters · 20 years ago
  14. 2242fe8 Teach MSVC 6 about pystrtod.c. by Tim Peters · 20 years ago
  15. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  16. 6ccc9a9 Removed test_sitepackages test. Skip discovered that it only passed if Python by Brett Cannon · 20 years ago
  17. 7f35404 - markup fix by Fred Drake · 20 years ago
  18. bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 20 years ago
  19. f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
  20. d68d3ee Note that memory returned by PyBuffer_New is not specifically aligned. by Neil Schemenauer · 20 years ago
  21. 604c013 SF 952807: Unpickling pickled instances of subclasses of datetime.date, by Tim Peters · 20 years ago
  22. d348193 Add genexps to the glossary. by Raymond Hettinger · 20 years ago
  23. 90a764c Fix a refcount bug in an obscure code corner. by Thomas Heller · 20 years ago
  24. 2565324 Fix a refcount bug in an obscure code corner. Already backported. by Thomas Heller · 20 years ago
  25. 1c0228a Another nit found by Neal Norwitz using pychecker. This was caused by a by Skip Montanaro · 20 years ago
  26. 1cdd363 Cleanup: the in operator already returns a bool, no need to bool() it again by Neal Norwitz · 20 years ago
  27. 492faa5 There is no reason to have an underscore after self by Neal Norwitz · 20 years ago
  28. c75f891 Remove a useless operation, setting name to itself by Neal Norwitz · 20 years ago
  29. f213484 correct name error caught by Neal Norwitz with pychecker by Skip Montanaro · 20 years ago
  30. 5dae505 Fix typo in comment. by Raymond Hettinger · 20 years ago
  31. 44cbfd7 [Bug #953177] Mention .getlist(); text from Paul Moore by Andrew M. Kuchling · 20 years ago
  32. 9665271 Plug a few memory leaks in utime(). path is allocated from within by Neal Norwitz · 20 years ago
  33. c28e7ad Try to improve test coverage for utime() by Neal Norwitz · 20 years ago
  34. fe92eef Valgrind was reporting an uninitialized read for bad input. by Neal Norwitz · 20 years ago
  35. 7b0a505 Look for the multibyte codec map files in the parent directory too by Neal Norwitz · 20 years ago
  36. c3cd9df Add some doc about using valgrind by Neal Norwitz · 20 years ago
  37. b5d7702 whoops, I wanted that commented out by default, will add doc to Misc by Neal Norwitz · 20 years ago
  38. 7eb3c91 SF bug 881641, make it easier to use valgrind by Neal Norwitz · 20 years ago
  39. 0b4d1ee SF 964876 mapping a 0 length file Document that it can't be done on Windows. by Tim Peters · 20 years ago
  40. de48307 Added documentation to address SF bug #963246: limitations on multiple by Phillip J. Eby · 20 years ago
  41. 0179a18 add -L flag to cause leaks(1) command to run just before exit by Skip Montanaro · 20 years ago
  42. 4d5bc60 Noam Raphel: Further developemt of CodeContext feature. by Kurt B. Kaiser · 20 years ago
  43. cfa157d Doc fix for SF #962633. by Nicholas Bastin · 20 years ago
  44. 41627bf Reword message by Andrew M. Kuchling · 20 years ago
  45. 6412b12 Remove a number of tests that differ only in input data size. It seems by Neil Schemenauer · 20 years ago
  46. 204d786 Fix exception wording by Andrew M. Kuchling · 20 years ago
  47. e1ca355 [Bug #918710] Add paragraph to clarify docs by Andrew M. Kuchling · 20 years ago
  48. 26f6bdf [Bug #758665] cgitb.scanvars() fails because of an unititialized value variable. Patch from Robin Becker. by Andrew M. Kuchling · 20 years ago
  49. 94afd3e Remove lots of magic constants. by Neil Schemenauer · 20 years ago
  50. 1b50b43 [Bug #936837] Add missing word by Andrew M. Kuchling · 20 years ago
  51. 2400e93 SF #877165: Give an info about what C++ compiler command should be by Hye-Shik Chang · 20 years ago
  52. 58fc5d0 Rewrote to use temporary files instead of StringIO objects in most places. by Skip Montanaro · 20 years ago
  53. a2c9a98 [Bug #897935] Fix fd leak in pty.spawn(). Reported by James Henstridge; 2.3 bugfix candidate. by Andrew M. Kuchling · 20 years ago
  54. b7d8ce0 [Bug #921657] Allow '@' in unquoted HTML attributes. Not strictly legal according to the HTML REC, but HTMLParser is already a pretty loose parser. Reported by Bernd Zimmermann. by Andrew M. Kuchling · 20 years ago
  55. 9021c95 SF bug #964230: random.choice([]) should return more intelligible exception by Raymond Hettinger · 20 years ago
  56. ba8b6bc [Bug #954364] inspect.getframeinfo() sometimes produces incorrect traceback line #s; fix is to look at tb.tb_lineno, not tb.frame.f_lineno. Patch from Robin Becker and me. by Andrew M. Kuchling · 20 years ago
  57. 39aef79 Fix a bug that robotparser starves memory when the server responses by Hye-Shik Chang · 20 years ago
  58. 5962f45 [Bug #841757] Patch from /F to allow Unicode strings as struct keys by Andrew M. Kuchling · 20 years ago
  59. b12d97c [Bug #841757] Exercise handling of Unicode strings by Andrew M. Kuchling · 20 years ago
  60. f2c0830 SF bug #963956: Bad error mesage when subclassing a module by Raymond Hettinger · 20 years ago
  61. 0096e26 Refactored site.py into functions. Also moved over to using sets. by Brett Cannon · 20 years ago
  62. 642c8a1 Patch #926209: Patch to setup.py to run on x86_64 Linux. by Martin v. Löwis · 20 years ago
  63. 2d6783b SF #966375: Fix typo (Reported by Kristian Ovaska) by Hye-Shik Chang · 20 years ago
  64. 4ec44e8 Replaced arbitrary addend in tuple_hash with one that is known to generate by Raymond Hettinger · 20 years ago
  65. 4e49b83 SF patch #961387: Make IDLE's paragraph reformatting width configurable by Raymond Hettinger · 20 years ago
  66. 3c14544 Reuse width/iswide tests from strings_test. (Suggested by Walter Dörwald) by Hye-Shik Chang · 20 years ago
  67. 6838c55 Add comments for unicode-only methods to give hints on AttributeError by Hye-Shik Chang · 20 years ago
  68. 7bd8606 Fix typo. by Hye-Shik Chang · 20 years ago
  69. 5f51259 Add iswide() and width() method for UserString according as the by Hye-Shik Chang · 20 years ago
  70. 0701bd6 Fix for #860242: use correct names in the "save preferences" dialog. by Jack Jansen · 20 years ago
  71. 30184f3 - Fix for #862941: "run with commandline python" crashed. Fixed. by Jack Jansen · 20 years ago
  72. 22ec5c3 if we must argue over the/they, we can just remove the unecessary word by Fred Drake · 20 years ago
  73. 175d188 avoid backticks in examples; use repr() instead by Fred Drake · 20 years ago
  74. 1afd480 Fix for #932977: MacOSX does not pass the whole pathname in argv[0] for by Jack Jansen · 20 years ago
  75. 7637574 On startup, attempt to set the working directory to $HOME. by Jack Jansen · 20 years ago
  76. 2d1a2aa Fix typo: the-->they by Raymond Hettinger · 20 years ago
  77. 6dfed6c Fix typo. by Guido van Rossum · 20 years ago
  78. 3151e18 Small clarification. by Michael W. Hudson · 20 years ago
  79. 8d562e6 Very large scripts folders could crash the IDE, because it runs out by Jack Jansen · 20 years ago
  80. d6d35d9 - fix typo reported by John Belmonte - wrap a long line by Fred Drake · 20 years ago
  81. 77ca6c4 Warn abou missing mutate flag to ioctl. Fixes #696535. by Martin v. Löwis · 20 years ago
  82. 6b08a40 Partial fix for #887242 (link extensions with dynamic_lookup in stead by Jack Jansen · 20 years ago
  83. bc555e3 Fix the grammar a bit more. (Adjusted by Tony Meyer) by Hye-Shik Chang · 20 years ago
  84. 9bc4f2d Drop claims that Unicode always means UCS-2. Fixes #881861. by Martin v. Löwis · 20 years ago
  85. 4a9b806 Document string methods that are locale-dependent. Fixes #935749. by Martin v. Löwis · 20 years ago
  86. 558d9bf Patch #929192: Improvements to bluetooth support. by Martin v. Löwis · 20 years ago
  87. eac324b Patch #957240: Add count parameter to asyncore.loop. by Martin v. Löwis · 20 years ago
  88. 3e501dc One more attempt to fix the grammar. by Martin v. Löwis · 20 years ago
  89. 6186410 SF #965425: fix so hyphenated words surrounded by punctuation are by Greg Ward · 20 years ago
  90. 29eb8c3 Do an actual test for xcodebuild, in stead of relying on the user to by Jack Jansen · 20 years ago
  91. 9f5f056 Remove the pcre module. by Thomas Heller · 20 years ago
  92. 118f931 Rename class attribute containing the class to be tested, so the name is the by Walter Dörwald · 20 years ago
  93. b4541c2 Remove reference to pcre module by Andrew M. Kuchling · 20 years ago
  94. 5ededdd Remove pcre module by Andrew M. Kuchling · 20 years ago
  95. f7e836e Don't build the pcre module any more by Andrew M. Kuchling · 20 years ago
  96. acf2618 Remove reference to pcre module by Andrew M. Kuchling · 20 years ago
  97. 4ad9723 Remove pre module by Andrew M. Kuchling · 20 years ago
  98. 5629d0e Fix grammar hopefully. :) by Hye-Shik Chang · 20 years ago
  99. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  100. b6568b9 Add a name (old change sitting in my tree) by Andrew M. Kuchling · 20 years ago