1. 7297650 Another dummy type. by Guido van Rossum · 21 years ago
  2. e9ef203 Added a simple NEWOBJ test. This is in the pickle-only part of the by Tim Peters · 21 years ago
  3. c1eea67 Remove filecmp by Andrew M. Kuchling · 21 years ago
  4. 15f742d first cut at a shell script to view a single section from the library by Skip Montanaro · 21 years ago
  5. eab7db3 Taught cPickle how to read pickles containing NEWOBJ. This won't get by Tim Peters · 21 years ago
  6. 7585229 Port test_userlist to PyUnit and add a few tests to increase code by Walter Dörwald · 21 years ago
  7. 298e421 SF patch #685738 by Michael Stone. by Guido van Rossum · 21 years ago
  8. 0c016a9 Re-enable compiling ossaudiodev now that it seems to work again. by Guido van Rossum · 21 years ago
  9. 8587b3c Added a HIGHEST_PROTOCOL module attribute to pickle and cPickle. by Tim Peters · 21 years ago
  10. fe62bc9 Conditionalize another constant by Andrew M. Kuchling · 21 years ago
  11. 289587e Use python_d.exe to build _ssl_d.pyd - we can not express that we depend by Mark Hammond · 21 years ago
  12. 1df9fdd socket_inet_aton(): ip_addr was left undefined before use in the by Tim Peters · 21 years ago
  13. 12d31e2 Try to doc the new pickle details being implemented as part of PEP 307. by Neal Norwitz · 21 years ago
  14. bb18441 SF patch #682432, add lookbehind tests by Neal Norwitz · 21 years ago
  15. 88f115b Ummm, try to get it right this time by Neal Norwitz · 21 years ago
  16. 10b214c Use configure to check for inet_aton. by Neal Norwitz · 21 years ago
  17. 3ea7cc3 Fix typo. by Walter Dörwald · 21 years ago
  18. 7cbd247 Add test to ensure files (fds) don't leak by Neal Norwitz · 21 years ago
  19. ad05cdf Addressing SF bug #643005, implement socket.inet_aton() using by Guido van Rossum · 21 years ago
  20. 2294c0d Cleanup from patch #683257: by Neal Norwitz · 21 years ago
  21. c4f4ca9 Provide access to the import lock, fixing SF bug #580952. This is by Guido van Rossum · 21 years ago
  22. 4771065 Issue a warning when int('0...', 0) returns an int with the sign by Guido van Rossum · 21 years ago
  23. 3288f59 Expect test_ossaudiodev to skip on Linux, too. (It's broken. by Guido van Rossum · 21 years ago
  24. 9c00f42 Systematic testing of hex/oct constants. by Guido van Rossum · 21 years ago
  25. 48035eb SF #660455 : patch by NNorwitz. by Guido van Rossum · 21 years ago
  26. 66b1259 SF #660455 : patch by NNorwitz. by Guido van Rossum · 21 years ago
  27. e71b9f8 - Use distutils to find site-python (suggested by Thomas Heller, thanks!) by Jack Jansen · 21 years ago
  28. c13f19f Icons for the package manager. by Jack Jansen · 21 years ago
  29. c96d6ce Thank you sir, can I have another. by Just van Rossum · 21 years ago
  30. 3a146b6 Photoshop source file for package manager icon. by Jack Jansen · 21 years ago
  31. d780036 Use bundlebuilder directly to build applets. by Jack Jansen · 21 years ago
  32. ffb8fef Allow this to run both standalone and as a window in the IDE. by Jack Jansen · 21 years ago
  33. a359a3d More int() around float arguments. by Jack Jansen · 21 years ago
  34. c0452da Create applets slightly differently: by saving the sourcecode to a by Jack Jansen · 21 years ago
  35. f59c6fa When in MacPython-OSX use bundlebuilder to create .app bundles. by Jack Jansen · 21 years ago
  36. 53b341f - Better way to find site-packages by Jack Jansen · 21 years ago
  37. 113af98 Renamed InstallManager to PackageManager, finished a first stab at the by Jack Jansen · 21 years ago
  38. 9c679f8 In a MultiList select all cells in the row, not only the first one. by Jack Jansen · 21 years ago
  39. 7aeba45 Updated the Mac documentation to the current state of affairs. by Jack Jansen · 21 years ago
  40. 90975f1 Minor cleanup of new batch-list/dict code. by Tim Peters · 21 years ago
  41. a89d10e Implement another useful feature for proxies: in super(X, x), x may by Guido van Rossum · 21 years ago
  42. e5b130b Add missing cast in previous fix. by Guido van Rossum · 21 years ago
  43. 03bc7d3 SF #532767: isinstance(x, X) should work when x is a proxy for an X by Guido van Rossum · 21 years ago
  44. 73019a6 An install manager window for the IDE and standalone use. Unfinished. by Jack Jansen · 21 years ago
  45. ec74f2f Add more missing PyErr_NoMemory() after failled memory allocs by Neal Norwitz · 21 years ago
  46. 42f08ac Implemented batching for dicts in cPickle. This is after two failed by Tim Peters · 21 years ago
  47. e7b33db Changed database format to make fields adhere to PEP 241 where by Jack Jansen · 21 years ago
  48. 9eb67ea Add Str, a subclass of str. by Guido van Rossum · 21 years ago
  49. 1092d64 Implemented list batching in cPickle. by Tim Peters · 21 years ago
  50. eea4718 Fix from SF #681367: inherit tp_as_buffer. This only applies to C by Guido van Rossum · 21 years ago
  51. 6c7438e Add compilation instructions for xxmodule.c. by Guido van Rossum · 21 years ago
  52. a33d0aa Unparenting BZ2File, as discussed in SF patch #661796. by Gustavo Niemeyer · 21 years ago
  53. b6e5a0c Put proper tests in classmethod_get(). Remove the type argument to by Guido van Rossum · 21 years ago
  54. 6bae46d Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe by Guido van Rossum · 21 years ago
  55. 5f322d3 SF bug 684667: Modules/selectmodule.c returns NULL without exception set. by Tim Peters · 21 years ago
  56. 9af48ff Inline create_specialmethod() -- since METH_CLASS is done differently by Guido van Rossum · 21 years ago
  57. 8d2613a Added tests to ensure that list and dict "chunking" are actually by Tim Peters · 21 years ago
  58. 726b238 - More int() calls around floating point numbers passed where integers are by Jack Jansen · 21 years ago
  59. 82ed25c Add basic arg sanity checking to wrap_descr_get(). This is called by Guido van Rossum · 21 years ago
  60. ada859c Remove duplicate word (rules) by Neal Norwitz · 21 years ago
  61. eb18993 Fix so it compiles at least. by Michael W. Hudson · 21 years ago
  62. 3e245d8 Add item pertaining to by Michael W. Hudson · 21 years ago
  63. 3f50cdc Get rid of the "bozo" __getstate__ that was inserted when __slots__ by Guido van Rossum · 21 years ago
  64. 0c10015 Patch #676839: Cygwin _iconv_codec module patch by Jason Tishler · 21 years ago
  65. 8437570 Patch #676837: Cygwin array module patch by Jason Tishler · 21 years ago
  66. ba20533 [ 683376 ] Adding NotImplementedType to types.py by Just van Rossum · 21 years ago
  67. f163d10 Make comments agree with code (I think). by Michael W. Hudson · 21 years ago
  68. 065f5fa Sundry very picky changes. by Michael W. Hudson · 21 years ago
  69. aab0260 Remove erroneous period. by Michael W. Hudson · 21 years ago
  70. 1e71b04 Update advice about __module__ and __name__ and tp_name wrt. new types. by Michael W. Hudson · 21 years ago
  71. bbe17f5 A typo, and desist from inaccurately describing some things as lists. by Michael W. Hudson · 21 years ago
  72. 4f046e2 Add a few tests to test_count() to increase coverage in by Walter Dörwald · 21 years ago
  73. 7464024 Fix copy&paste error: call title instead of count by Walter Dörwald · 21 years ago
  74. 8dd1932 Change filtertuple() to use tp_as_sequence->sq_item by Walter Dörwald · 21 years ago
  75. 8d326b8 Punctuation fixes in docstrings. by Jack Jansen · 21 years ago
  76. f6c9ba8 Fold long lines. by Guido van Rossum · 21 years ago
  77. 6a600ab Added docstrings. by Jack Jansen · 21 years ago
  78. 72df65a Add Neil's suggestions for avoiding this warning by Andrew M. Kuchling · 21 years ago
  79. 2c646c9 Squashed compiler wng about signed/unsigned clash in comparison. by Tim Peters · 21 years ago
  80. 26bf3ac - Better exception when the database isn't found. by Jack Jansen · 21 years ago
  81. 4f82a51 Pick up Makefile variable BASECFLAGS too. This is needed since OPT was by Jack Jansen · 21 years ago
  82. c4b217d Use MD5 checksums to check archive integrity and forestall downloads. by Jack Jansen · 21 years ago
  83. 1918f77 Change filterstring() and filterunicode(): If the by Walter Dörwald · 21 years ago
  84. b4bb64e Added preInstall and postInstall commands to packages. PIL needs this by Jack Jansen · 21 years ago
  85. e1ebd80 mention unicode file name support on OSX by Just van Rossum · 21 years ago
  86. 73ffb4a mention unicode support in compile, eval and exec by Just van Rossum · 21 years ago
  87. b9b8e9c My previous checkin caused compile() to no longer accept buffers, as noted by Just van Rossum · 21 years ago
  88. 3aaf42c patch #683515: "Add unicode support to compile(), eval() and exec" by Just van Rossum · 21 years ago
  89. 4adc9ab Fix memory leak of newstr when putenv() fails by Neal Norwitz · 21 years ago
  90. de8b94c Fix SF bug #683467, 'int' ability to generate longs not inherited by Neal Norwitz · 21 years ago
  91. 9caf9c0 Add tests and news entry about parser errors from bug #678518. by Neal Norwitz · 21 years ago
  92. 573e033 Alphabetize some names Add Grant Olson for patch provided to fix bug #678518 by Neal Norwitz · 21 years ago
  93. e4b5500 Remove duplicate code introduced by fixing bug #678518 by Neal Norwitz · 21 years ago
  94. f6b56ae Fix two refcounting bugs by Walter Dörwald · 21 years ago
  95. 95839b8 Strawman for a Package Install Manager for Python. It isn't CPAN yet, but at by Jack Jansen · 21 years ago
  96. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 21 years ago
  97. cf117b0 Rename 'proto' keyword arg to 'protocol' . Greg Ward's suggestion. by Guido van Rossum · 21 years ago
  98. d58f3fc Remove unused variable. by Guido van Rossum · 21 years ago
  99. 60eca93 C Code: by Raymond Hettinger · 21 years ago
  100. cb3319f SF patch #683187, fix universal newline problems on error by Neal Norwitz · 21 years ago