1. 16b7b53 SF #1701207: svnversion_init assertion failed by Neal Norwitz · 17 years ago
  2. e471317 Backport trunk revision 53527: by Thomas Wouters · 18 years ago
  3. b5fdf0d Backport 52501: by Neal Norwitz · 18 years ago
  4. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  5. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  6. 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 18 years ago
  7. 02f1d0d _PySys_Init(): It's rarely a good idea to size a buffer to the by Tim Peters · 18 years ago
  8. 4f7a722 Add 3 more bytes to a buffer to cover constants in string and null byte on top of 10 possible digits for an int. by Brett Cannon · 18 years ago
  9. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  10. 53a6d1d C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t by Skip Montanaro · 18 years ago
  11. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  12. ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 18 years ago
  13. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  14. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  15. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 18 years ago
  16. 5118517 Fix minor docstring typo. by Brett Cannon · 18 years ago
  17. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 18 years ago
  18. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  19. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  20. e86e7a5 svnversion_init(): Use standard layout for function defn. by Tim Peters · 19 years ago
  21. 216b78b Trimmed trailing whitespace. by Tim Peters · 19 years ago
  22. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 19 years ago
  23. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  24. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  25. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
  26. 6953772 patch [ 1119423 ] python -c readlink()s and stat()s '-c' by Georg Brandl · 19 years ago
  27. 13a1fde Partially revert #1074011; don't try to fflush stdin. Backported to 2.3 and 2.4. by Martin v. Löwis · 20 years ago
  28. 8e3ca8a Flush std{in,out,err} before closing it. Fixes #1074011. by Martin v. Löwis · 20 years ago
  29. 800ba23 This is my patch: by Michael W. Hudson · 20 years ago
  30. 0f5aed4 Remove compiler warning by Neal Norwitz · 20 years ago
  31. f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
  32. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 20 years ago
  33. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 20 years ago
  34. a2c17c5 Move initialization of sys.std{in,out}.encoding to Py_Initialize. by Martin v. Löwis · 21 years ago
  35. e5e065b New function sys.getcheckinterval(), to complement setcheckinterval(). by Tim Peters · 21 years ago
  36. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago
  37. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  38. a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 21 years ago
  39. 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 21 years ago
  40. 46d3dc3 - New function sys.exc_clear() clears the current exception. This is by Guido van Rossum · 21 years ago
  41. 162e38c - sys.path[0] (the directory from which the script is loaded) is now by Guido van Rossum · 21 years ago
  42. 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 21 years ago
  43. 27bb71e Patch #664376: sys.path[0] should contain absolute pathname. by Thomas Heller · 22 years ago
  44. 8696ebc Add os.path.supports_unicode_filenames for all platforms, by Mark Hammond · 22 years ago
  45. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  46. 8e790e7 expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456. by Skip Montanaro · 22 years ago
  47. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  48. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  49. e739a0d Got rid of an extraneous semicolon. by Jack Jansen · 22 years ago
  50. ba3ff1b Fix the docstring for sys.getrefcount(). Closes SF bug #571759. by Fred Drake · 22 years ago
  51. a3fb4f7 Patch #505375: Make doc strings optional. by Martin v. Löwis · 22 years ago
  52. 0c766a0 Change sys_exit to use METH_VARARGS. by Neal Norwitz · 22 years ago
  53. 0f2103f Fix wording of sys.exit docstring. Close SF bug 534113. by Neil Schemenauer · 22 years ago
  54. 290d31e SF #506611, fix sys.setprofile(), sys.settrace() core dumps by Neal Norwitz · 22 years ago
  55. 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
  56. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  57. faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 23 years ago
  58. 080d5b3 mywrite(): The test for trouble in PyOS_vsnprintf was wrong on both by Tim Peters · 23 years ago
  59. 5d3d134 Use PyOS_vsnprintf() and check its return value. by Jeremy Hylton · 23 years ago
  60. 107b7da Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571. by Martin v. Löwis · 23 years ago
  61. a768882 Convert getrefcount() to METH_O, and sys_excepthook() to use by Fred Drake · 23 years ago
  62. 8f51f54 Rationalize the events passed to the profiler (no changes for the tracer). by Fred Drake · 23 years ago
  63. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  64. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  65. 03897ea Patch number #422106 by Greg Ball, to fix segmentation fault in sys.displayhook. by Moshe Zadka · 23 years ago
  66. f0473d5 Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. by Martin v. Löwis · 23 years ago
  67. 5755ce6 Revise the interface to the profiling and tracing support for the by Fred Drake · 23 years ago
  68. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  69. d083839 Instead of initializing & interning the strings passed to the profile by Fred Drake · 23 years ago
  70. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 23 years ago
  71. b5c5132 Add sys.excepthook. by Ka-Ping Yee · 23 years ago
  72. 03df3b3 Neil discovered a bad DECREF on warnoptions, that caused repeated by Guido van Rossum · 24 years ago
  73. ceb9b7c stdout is sometimes a macro; use "outf" instead. by Greg Stein · 24 years ago
  74. f68f2fe Implementation of PEP-0217. This closes the PEP, and patch 103170 by Moshe Zadka · 24 years ago
  75. 23fff91 Add definitions for PySys_ResetWarnOptions() and PySys_AddWarnOption(). by Guido van Rossum · 24 years ago
  76. b6a54d2 _getframe(): New sys module function for getting at the stack frame. by Barry Warsaw · 24 years ago
  77. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  78. ee5adfb add user-modifiable recursion_limit by Jeremy Hylton · 24 years ago
  79. 592f2d6 _PySys_Init(): When setting up sys.version_info, use #if/#elif.../#endif by Fred Drake · 24 years ago
  80. f2581c9 _PySys_Init(): Fix another Insure discovered memory leak; the PyString by Barry Warsaw · 24 years ago
  81. a2b6ad6 Guido pointed out that all names in the sys module have no underscore, by Fred Drake · 24 years ago
  82. ccede59 The attempt to protect against MS_WIN16 compilers that do not support long by Fred Drake · 24 years ago
  83. 099325e Add a byte_order value to the sys module. The value is "big" for by Fred Drake · 24 years ago
  84. 1e0c2f4 Create a new section of pyport.h to hold all external function declarations by Thomas Wouters · 24 years ago
  85. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  86. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  87. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  88. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  89. 582acec Trent Mick's Win64 changes: size_t vs. int or long; also some overflow tests. by Guido van Rossum · 24 years ago
  90. 440d898 Added a new debug method sys.gettotalrefcount(), which returns the total number of references on all Python objects. This is only enabled when Py_TRACE_REFS is defined (which includes default debug builds under Windows). by Mark Hammond · 24 years ago
  91. 99964b8 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  92. 8b4d01d M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  93. 6d27c1e Simplify creation of the version_info value for clarity, per by Fred Drake · 24 years ago
  94. 93a20bf Capitulate, changing version_info to a 5-tuple: by Fred Drake · 24 years ago
  95. 801c08d Define version_info to be a tuple (major, minor, micro, level); level by Fred Drake · 24 years ago
  96. ffc0f4f Use modern PyArg_ParseTuple style, with function names. (Mostly.) by Guido van Rossum · 24 years ago
  97. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  98. be20336 In PySys_GetObject(), it's possible that tstate->interp->sysdict is by Guido van Rossum · 25 years ago
  99. 54892c4 _PySys_Init(): Nailed small memory leak. The stringobject created for by Barry Warsaw · 26 years ago
  100. a71b5f4 Jim Ahlstrom patch: the module doc string is too long for 16-bit VC by Guido van Rossum · 26 years ago