1. 8e80a72 The recent changes to super(), in particular supercheck(), broke when by Guido van Rossum · 21 years ago
  2. 6b29c01 Make __module__ writable except in restricted mode (like for classic classes). by Guido van Rossum · 21 years ago
  3. ff71c98 Make __module__ settable on functions and methods. by Jeremy Hylton · 21 years ago
  4. e2052ab One doctest displaying a dict didn't sort it first. *Maybe* this fixes by Tim Peters · 21 years ago
  5. fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 21 years ago
  6. 6921eca Make PyNumber_Check() a bit more careful, since all sorts of things by Guido van Rossum · 21 years ago
  7. 55dc26c Fold some long lines. by Guido van Rossum · 21 years ago
  8. dcfdceb Fix SF bug #688424, 64-bit test problems by Neal Norwitz · 21 years ago
  9. eb2a5ef Fix SF bug #688424, 64-bit test problems by Neal Norwitz · 21 years ago
  10. 4edaa0d Copy the trace module here from Tools/scripts. by Jeremy Hylton · 21 years ago
  11. 6fa635d SF patch #687683, Patches to logging (updates from Vinay) by Neal Norwitz · 21 years ago
  12. d6a3f93 Use "$@" to pass arguments to Python in stead of "${1}". This passes all by Jack Jansen · 21 years ago
  13. 0feb8c3 Don't try to build dl on darwin. It doesn't build out of the box, and it by Jack Jansen · 21 years ago
  14. 0c0aad9 Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs. by Neal Norwitz · 21 years ago
  15. 679bc9f [Patch #681504] Call customize_compiler in config command by Andrew M. Kuchling · 21 years ago
  16. d87eeb9 Add two acks; bump version number by Andrew M. Kuchling · 21 years ago
  17. 7ee9b51 [Bug #688261] Fix optparse example and output by Andrew M. Kuchling · 21 years ago
  18. acddabc [Bug #683416] Make PEP263 coverage a bit more explicit, and add it to the by Andrew M. Kuchling · 21 years ago
  19. 2ff51a8 Make changes suggested by Walter to use self.assert*() methods. by Neal Norwitz · 21 years ago
  20. 3b8fb47 Import test_support properly by Neal Norwitz · 21 years ago
  21. 003eb30 test_posix is an expected skip on Win32. Also fixed test_posix to by Tim Peters · 21 years ago
  22. 003091c M NEWS.txt M PyShell.py M ScriptBinding.py M rpc.py M run.py by Kurt B. Kaiser · 21 years ago
  23. f927f14 Fix SF bug #687655, String formatting conversions misleading by Neal Norwitz · 21 years ago
  24. 1fb1400 Add URL for PEP to the source code encoding warning. by Marc-André Lemburg · 21 years ago
  25. 08ea61a Remove PyArg_ParseTuple() for methods which take no args, by Neal Norwitz · 21 years ago
  26. e241ce8 Added test_posix (hopefully it works on Windows). by Neal Norwitz · 21 years ago
  27. 5c1ba53 Use correct function name to PyArg_ParseTuple("is_package"). by Neal Norwitz · 21 years ago
  28. 946c194 When installing resource files whose name ends in .rsrc use the by Jack Jansen · 21 years ago
  29. 3d3b746 Optionally honour #! paths in scripts. Fixes #676358. by Jack Jansen · 21 years ago
  30. 996acf1 Actually run these tests from regrtest.py. by Neal Norwitz · 21 years ago
  31. 9e5d87f Reword section about moving variables to os.path to match intent (or by Michael W. Hudson · 21 years ago
  32. a460f44 - Added support for zip archives by Jack Jansen · 21 years ago
  33. 251b816 Patch 686397: by Andrew MacIntyre · 21 years ago
  34. 437966c Tweak to Skip's checkin of patch 686397: by Andrew MacIntyre · 21 years ago
  35. a2125fe Better error messages and warnings. by Jack Jansen · 21 years ago
  36. 9f70aab Added notes about pimp and bundlebuilder to the Mac section. by Jack Jansen · 21 years ago
  37. fd3e54c When building an applet clear out the tempfile and dir afterwards. by Jack Jansen · 21 years ago
  38. 97dede0 Fix for SF 686380, from SF patch 686771 by Ping. (errors trying to by Guido van Rossum · 21 years ago
  39. 0ae4c4a Make 2 module variables static. Assuming this is correct. by Neal Norwitz · 21 years ago
  40. 0732301 Add closing ) in comment by Neal Norwitz · 21 years ago
  41. 080c88b cPickle.c, load_build(): Taught cPickle how to pick apart by Tim Peters · 22 years ago
  42. d2c684f Moved setupDocs.py to Doc/setup.py and did some cleanup. It now at least by Jack Jansen · 22 years ago
  43. 71fcda5 cPickle produces NEWOBJ appropriately now. It still doesn't know by Tim Peters · 22 years ago
  44. 9cac1c4 Patch for bug reported in patch #686627: import race condition in by Marc-André Lemburg · 22 years ago
  45. 117910d Migrate definitions of several platform-dependent path-related variables by Skip Montanaro · 22 years ago
  46. 4507ec7 - The audio driver tests (test_ossaudiodev.py and by Guido van Rossum · 22 years ago
  47. 4ab8437 Allow opening of alternate databases. by Jack Jansen · 22 years ago
  48. 0dacac4 Factored out classes for handling source and binary distributions. Source by Jack Jansen · 22 years ago
  49. f68043c Got building documentation from source to work. by Jack Jansen · 22 years ago
  50. bb2734a Port test_charmapcodec to PyUnit. From SF patch #662807 by Walter Dörwald · 22 years ago
  51. 002a5de extsep description: by Fred Drake · 22 years ago
  52. 47e46e2 add missing description of os.extsep by Skip Montanaro · 22 years ago
  53. 2835e37 SF bug #663701: sets module review by Raymond Hettinger · 22 years ago
  54. e544f6f SF bug #663701. The caret wasn't printing well in the PDF documentation. by Raymond Hettinger · 22 years ago
  55. d8d2cf4 Remove deps on mac doc files which have been removed by Neal Norwitz · 22 years ago
  56. a2ecabe Fix docstring typo by Andrew M. Kuchling · 22 years ago
  57. c07fb2f Fix comment typo by Andrew M. Kuchling · 22 years ago
  58. 92c8bb3 Minor assorted cleanups; no semantic changes. by Tim Peters · 22 years ago
  59. 6143648 SF 685011: calendar module overflow handling by Raymond Hettinger · 22 years ago
  60. 1442dc1 Add SF reference to news item. by Guido van Rossum · 22 years ago
  61. aae53d4 The version of PyImport_Import() in cPickle is no longer needed (an edited by Tim Peters · 22 years ago
  62. 4b499dd3 - Finally fixed the bug in compile() and exec where a string ending by Guido van Rossum · 22 years ago
  63. 5aa3da6 save(): Reformat tail end just for clarity. by Tim Peters · 22 years ago
  64. 18e36f4 Removed unused cut'n'paste import. by Tim Peters · 22 years ago
  65. c0c9370 We didn't have any tests making pickles with one of {pickle, cPickle}, by Tim Peters · 22 years ago
  66. 7297650 Another dummy type. by Guido van Rossum · 22 years ago
  67. e9ef203 Added a simple NEWOBJ test. This is in the pickle-only part of the by Tim Peters · 22 years ago
  68. c1eea67 Remove filecmp by Andrew M. Kuchling · 22 years ago
  69. 15f742d first cut at a shell script to view a single section from the library by Skip Montanaro · 22 years ago
  70. eab7db3 Taught cPickle how to read pickles containing NEWOBJ. This won't get by Tim Peters · 22 years ago
  71. 7585229 Port test_userlist to PyUnit and add a few tests to increase code by Walter Dörwald · 22 years ago
  72. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 22 years ago
  73. 0c016a9 Re-enable compiling ossaudiodev now that it seems to work again. by Guido van Rossum · 22 years ago
  74. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 22 years ago
  75. fe62bc9 Conditionalize another constant by Andrew M. Kuchling · 22 years ago
  76. 289587e Use python_d.exe to build _ssl_d.pyd - we can not express that we depend by Mark Hammond · 22 years ago
  77. 1df9fdd socket_inet_aton(): ip_addr was left undefined before use in the by Tim Peters · 22 years ago
  78. 12d31e2 Try to doc the new pickle details being implemented as part of PEP 307. by Neal Norwitz · 22 years ago
  79. bb18441 SF patch #682432, add lookbehind tests by Neal Norwitz · 22 years ago
  80. 88f115b Ummm, try to get it right this time by Neal Norwitz · 22 years ago
  81. 10b214c Use configure to check for inet_aton. by Neal Norwitz · 22 years ago
  82. 3ea7cc3 Fix typo. by Walter Dörwald · 22 years ago
  83. 7cbd247 Add test to ensure files (fds) don't leak by Neal Norwitz · 22 years ago
  84. ad05cdf Addressing SF bug #643005, implement socket.inet_aton() using by Guido van Rossum · 22 years ago
  85. 2294c0d Cleanup from patch #683257: by Neal Norwitz · 22 years ago
  86. c4f4ca9 Provide access to the import lock, fixing SF bug #580952. This is by Guido van Rossum · 22 years ago
  87. 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 22 years ago
  88. 3288f59 Expect test_ossaudiodev to skip on Linux, too. (It's broken. by Guido van Rossum · 22 years ago
  89. 9c00f42 Systematic testing of hex/oct constants. by Guido van Rossum · 22 years ago
  90. 48035eb SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  91. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 22 years ago
  92. e71b9f8 - Use distutils to find site-python (suggested by Thomas Heller, thanks!) by Jack Jansen · 22 years ago
  93. c13f19f Icons for the package manager. by Jack Jansen · 22 years ago
  94. c96d6ce Thank you sir, can I have another. by Just van Rossum · 22 years ago
  95. 3a146b6 Photoshop source file for package manager icon. by Jack Jansen · 22 years ago
  96. d780036 Use bundlebuilder directly to build applets. by Jack Jansen · 22 years ago
  97. ffb8fef Allow this to run both standalone and as a window in the IDE. by Jack Jansen · 22 years ago
  98. a359a3d More int() around float arguments. by Jack Jansen · 22 years ago
  99. c0452da Create applets slightly differently: by saving the sourcecode to a by Jack Jansen · 22 years ago
  100. f59c6fa When in MacPython-OSX use bundlebuilder to create .app bundles. by Jack Jansen · 22 years ago