1. bd6be7a I think it makes more sense that the pseudo filename used by fdopen() by Guido van Rossum · 22 years ago
  2. bcf9f9e SF # 602108 ensure string is null terminated after strncpy by Neal Norwitz · 22 years ago
  3. 806d1c8 Fix *really* embarrassing typo reported by Raymond Hettinger. by Michael W. Hudson · 22 years ago
  4. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
  5. 96940cf extract_time(): Squash compiler warning about possibly information- by Tim Peters · 22 years ago
  6. 076b209 Add missing return statement. by Martin v. Löwis · 22 years ago
  7. 6aa9fdb Use utimes(2) where available to support microsecond timestamps. by Martin v. Löwis · 22 years ago
  8. a32c994 Always generate floats for stat_result; fix configure test. by Martin v. Löwis · 22 years ago
  9. 94717ed Patch #606592: Subsecond timestamps in stat_result. by Martin v. Löwis · 22 years ago
  10. b567392 SF bug # 585792, Invalid mmap crashes Python interpreter by Neal Norwitz · 22 years ago
  11. 884baa1 --with(out)-thread is deprecated according to configure --help by Neal Norwitz · 22 years ago
  12. 83a072d Update the module doc comment. by Guido van Rossum · 22 years ago
  13. 960bc54 (Most of) SF patch 601369 (Christos Georgiou): obmalloc,structmodule: by Guido van Rossum · 22 years ago
  14. f57b22a Minor change for symmetry with PyXML: PyDoc_STR should not include by Fred Drake · 22 years ago
  15. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  16. 674deb2 SF bug 601775 - some int results that should be bool. by Guido van Rossum · 22 years ago
  17. 5959c55 Added __pow__(a,b) to the operator module. Completes the pattern of by Raymond Hettinger · 22 years ago
  18. 7dca21e SF bug 595919: popenN return only text mode pipes by Tim Peters · 22 years ago
  19. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  20. 0a51b58 base64.decodestring('') should return '' instead of raising an by Barry Warsaw · 22 years ago
  21. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  22. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  23. 72cf6a8 Fix memory leaks reported by valgrind by Neal Norwitz · 22 years ago
  24. 23b5918 add some example docstrings using PyDoc_STR by Skip Montanaro · 22 years ago
  25. d9e7d24 add PyDoc_STR and PyDoc_STRVAR calls as examples for module authors by Skip Montanaro · 22 years ago
  26. 200788c Allow more docstrings to be removed during compilation in some modules by Neal Norwitz · 22 years ago
  27. 4030714 For new-style classes, we can now test for tp_del instead of asking by Guido van Rossum · 22 years ago
  28. 9cf424b On Cygwin, put stdin, stderr, and stdout in binary mode when the -u by Sjoerd Mullender · 22 years ago
  29. 90128ba SF bug #592645 fix memory leak in socket.getaddrinfo by Neal Norwitz · 22 years ago
  30. 9d416a7 Update the text on the Expat module and library. by Fred Drake · 22 years ago
  31. 12e3c71 The other half of the patches added to SF patch 555085 by A I by Guido van Rossum · 22 years ago
  32. 22a9715 Clean up some docstrings. Some docstrings didn't show their return by Guido van Rossum · 22 years ago
  33. 4df78cd Patch #588561: Cygwin _hotshot patch by Jason Tishler · 22 years ago
  34. 3f19b10 Replace abort with Py_FatalError. by Martin v. Löwis · 22 years ago
  35. 5814187 internal_connect(): Windows. When sock_timeout > 0 and connect() yields by Tim Peters · 22 years ago
  36. 8ee5243 Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py. by Guido van Rossum · 22 years ago
  37. 5f8a23f Since the errno module is needed by os._execvpe(), and that is used by the by Fred Drake · 22 years ago
  38. 7d6e19d Add trace_frame. Fixes #534864. Backported to 2.2. by Martin v. Löwis · 22 years ago
  39. 5a39530 Add recursion counter for pickling. Fixes #576084. by Martin v. Löwis · 22 years ago
  40. 610291c Fix ref(), proxy() docstrings, based on comments from David Abrahams. by Fred Drake · 22 years ago
  41. 71ffc5c add #include branch for compilation with Berkeley DB by Skip Montanaro · 22 years ago
  42. 21ed16a Added one call to Py_Main(), for OSX framework builds only, that will get the by Jack Jansen · 22 years ago
  43. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  44. ea0c382 - Get _environ through the NSEnviron call in a MacOSX framework. This allows by Jack Jansen · 22 years ago
  45. b6a4505 Cray fixup as seen in bug #558153. by Michael W. Hudson · 22 years ago
  46. cfa1f52 Revert changes to use PyArg_Parse(), so any sequence will continue to work -- Spotted by Just van Rossum by Neal Norwitz · 22 years ago
  47. 50584b4 Use PyArg_ParseTuple() instead of PyArg_Parse() which is deprecated by Neal Norwitz · 22 years ago
  48. 50d5d4f Fix docstring to be consistent with parameter name (prefix) by Neal Norwitz · 22 years ago
  49. 1169011 SF patch #584245, get python to link on OSF1 (Dec Unix) by Neal Norwitz · 22 years ago
  50. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  51. 0cec0ff Patch #573770: Implement lchown. by Martin v. Löwis · 22 years ago
  52. ddc6f47 Pass length of result structure into setipaddr. Fixes bug #565747. by Martin v. Löwis · 22 years ago
  53. 2026584 SF patch #577031, remove PyArg_NoArgs() since it's deprecated by Neal Norwitz · 22 years ago
  54. 77c72bb SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 22 years ago
  55. ce233b4 Fix last checkin, can't use " inside a string by Neal Norwitz · 22 years ago
  56. 611a710 Patch #552812: Better description in "python -h" for -u. by Martin v. Löwis · 22 years ago
  57. 09c35f7 Patch #575827: allow threads inside SSL creation. by Martin v. Löwis · 22 years ago
  58. 825e47b Put checks for error returns in the right place. by Jeremy Hylton · 22 years ago
  59. c075e19 Extended socket.htonl and ntohl to accept longs. by Jeremy Hylton · 22 years ago
  60. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  61. 0b624f6 unpack_string(): avoid a compiler warning (about a real bug!) by by Guido van Rossum · 22 years ago
  62. 814f9fe Return NULL instead of 0 from function with a pointer return value. by Fred Drake · 22 years ago
  63. d3c46d5 Patch to call the Pure python strptime implementation if there's no by Guido van Rossum · 22 years ago
  64. ad65490 Bail out early from internal_select() when socket file descriptor by Guido van Rossum · 22 years ago
  65. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
  66. a12b4cf A Python float is a C double; redeclare defaulttimeout as such; stops by Tim Peters · 22 years ago
  67. 1693ba8 Silence warning about getdefaulttimeout in PyMethodDef. by Guido van Rossum · 22 years ago
  68. 7fa4bfa Fix indentation. by Jeremy Hylton · 22 years ago
  69. 666bf52 - When the log reader detects end-of-file, close the file. by Fred Drake · 22 years ago
  70. 9d0c8ce Add default timeout functionality. This adds setdefaulttimeout() and by Guido van Rossum · 22 years ago
  71. 5c3ed3d Mark the closed attribute of the profiler with PyDoc_STR(), and added by Fred Drake · 22 years ago
  72. d1eb8b6 Added a docstring for the closed attribute. by Fred Drake · 22 years ago
  73. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
  74. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  75. 9cb64b9 Some modernization. Get rid of the redundant next() method. Always by Guido van Rossum · 22 years ago
  76. f042db6 Remove RCSId; this produces annoying warnings. by Fred Drake · 22 years ago
  77. 2335100 Wipe out some warnings about non-ANSI code and an unsafe arg to isdigit(). by Guido van Rossum · 22 years ago
  78. 39c6116 Given the persistent id code a shot at a class before calling save_global(). by Jeremy Hylton · 22 years ago
  79. 975e392 Fix bug 581232 - [Windows] Can not interrupt time.sleep() by Mark Hammond · 22 years ago
  80. ee66d0c /F revealed that ShellExecute() only requires shellapi.h, not the by Tim Peters · 22 years ago
  81. 155adbd Fix bug 231273 - [windows] os.popen doens't kill subprocess when interrupted by Mark Hammond · 22 years ago
  82. 7a1f917 WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few by Tim Peters · 22 years ago
  83. 9ee91f1 remove decl of unused variable by Jeremy Hylton · 22 years ago
  84. 0e1f7a8 Do more robust test of whether global objects are accessible. by Jeremy Hylton · 22 years ago
  85. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  86. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  87. 8b7f131 gc_list_move defined but not used. by Michael W. Hudson · 22 years ago
  88. 934c1a1 Another stab at SF 576327: zipfile when sizeof(long) == 8 by Tim Peters · 22 years ago
  89. aab713b visit_decref(): Added another assert. by Tim Peters · 22 years ago
  90. a98011c Fix for SF bug #576327: zipfile when sizeof(long) == 8 by Tim Peters · 22 years ago
  91. 4e54730 Repair badly formatted code. by Jeremy Hylton · 22 years ago
  92. 6fc13d9 Finished transitioning to using gc_refs to track gc objects' states. by Tim Peters · 22 years ago
  93. b28467b Do not depend on pymemcompat.h (was only used for PyXML); Martin likes by Fred Drake · 22 years ago
  94. 84262fb Mac OS X Jaguar (developer preview) seems to have a working getaddrinfo(). by Jack Jansen · 22 years ago
  95. ea40563 Reserved another gc_refs value for untracked objects. Every live gc by Tim Peters · 22 years ago
  96. 7c75bf2 Bring this back into sync with PyXML revision 1.58. by Fred Drake · 22 years ago
  97. 19b74c7 OK, I couldn't stand it <0.5 wink>: removed all uncertainty about what's by Tim Peters · 22 years ago
  98. 93cd83e visit_decref(): Two optimizations. by Tim Peters · 22 years ago
  99. 8839617 SF bug #574132: Major GC related performance regression by Tim Peters · 22 years ago
  100. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago