1. 0caaa6c Issue #28616: Correct help for sys.version_info releaselevel component. by Ned Deily · 8 years ago
  2. f9b2aa2 Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  3. c95f51a Issue #22193: Added private function _PySys_GetSizeOf() needed to implement by Serhiy Storchaka · 10 years ago
  4. 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  5. 15df36b Issue #16404: Add checks for return value of PyInt_FromLong() in by Serhiy Storchaka · 11 years ago
  6. 0585418 Fixed leak in sys.flags initialization. by Serhiy Storchaka · 11 years ago
  7. 08350fb #18839: document that sys.exit() will not accept a non-integer numeric value as exit status. by Ezio Melotti · 11 years ago
  8. aee9dfb merge 2.6 with hash randomization fix by Benjamin Peterson · 13 years ago
  9. 1e13eb0 - Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED by Barry Warsaw · 13 years ago
  10. fe6f9d0 Document absoluteness of sys.executable by Petri Lehtinen · 13 years ago
  11. 19b851d sys.checkinterval() now refreshes the current countdown ticker. by Raymond Hettinger · 13 years ago
  12. 7859d40 remove this dead subversion code by Benjamin Peterson · 13 years ago
  13. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  14. 3a5508e Port build identification from default branch. by Georg Brandl · 14 years ago
  15. 52ca516 Merged revisions 81398 via svnmerge from by Antoine Pitrou · 14 years ago
  16. 6a26560 Issue #5753: A new C API function, :cfunc:`PySys_SetArgvEx`, allows by Antoine Pitrou · 14 years ago
  17. c7c96a9 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  18. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  19. 1545d80 Revert r78621. This was not a critical fix and we're in rc mode. by Barry Warsaw · 15 years ago
  20. 90193c0 Merged revisions 78620 via svnmerge from by Florent Xicluna · 15 years ago
  21. 8af970a Revert a nonexistent docstring typo, r42805. by Florent Xicluna · 15 years ago
  22. d85f1c0 Merged revisions 77892 via svnmerge from by Victor Stinner · 15 years ago
  23. b4b0a29 Issue #7819: Check sys.call_tracing() arguments types. by Victor Stinner · 15 years ago
  24. ee931b7 Issue #7766: Change sys.getwindowsversion() return value to a named tuple and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type. by Eric Smith · 15 years ago
  25. da8652d9 Issue #7117 (backport py3k float repr) continued: by Mark Dickinson · 15 years ago
  26. 7274cff Update docstrings for sys.getdlopenflags() and sys.setdlopenflags(). by Alexandre Vassalotti · 15 years ago
  27. 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
  28. 2eb6545 Merged revisions 72871-72872 via svnmerge from by Benjamin Peterson · 15 years ago
  29. e5afa3b support building with subversion 1.7 #6094 by Benjamin Peterson · 15 years ago
  30. af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 15 years ago
  31. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
  32. 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 16 years ago
  33. 686d53e Merged revisions 68521,68527,68534-68536,68540,68547,68552,68563,68570,68572,68575,68579-68580,68584 via svnmerge from by Georg Brandl · 16 years ago
  34. 1b3bef2 Issue #4915: Port sysmodule to Windows CE. by Martin v. Löwis · 16 years ago
  35. 4762902 Added garbage collector overhead and optional default return value to by Robert Schuppenies · 16 years ago
  36. d2cd86d Fixed Issue3122 and extended sys.getsizeof tests for built-in types. by Robert Schuppenies · 16 years ago
  37. 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 16 years ago
  38. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  39. 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
  40. 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
  41. 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
  42. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  43. 4dd019f Patch #2488: Add sys.maxsize. by Martin v. Löwis · 16 years ago
  44. be1501b Fix sys.flags to properly expose bytes_warning. by Brett Cannon · 16 years ago
  45. af748c3 Implemented PEP 370 by Christian Heimes · 16 years ago
  46. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 16 years ago
  47. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 16 years ago
  48. 858a770 Fix indentation in sysmodule.c by Benjamin Peterson · 16 years ago
  49. 40f0a87 Fix a bug in PySys_HasWarnOption() where it was not properly checking the by Brett Cannon · 16 years ago
  50. e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 16 years ago
  51. d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 16 years ago
  52. a113bd9 Added quick hack for bzr by Christian Heimes · 16 years ago
  53. 6a453c3 Added quick hack for bzr by Christian Heimes · 16 years ago
  54. 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 17 years ago
  55. 422051a Patch #1953 by Christian Heimes · 17 years ago
  56. 796fc31 The previous change was causing a segfault after multiple calls to Py_Initialize() and Py_Finalize(). by Christian Heimes · 17 years ago
  57. 0d92443 Fixed some references leaks in sys. by Christian Heimes · 17 years ago
  58. 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
  59. 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 17 years ago
  60. 7ce9b18 Typo fixes by Andrew M. Kuchling · 17 years ago
  61. f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 17 years ago
  62. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  63. dfdfaab Feature #1534 by Christian Heimes · 17 years ago
  64. 28104c5 Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 by Christian Heimes · 17 years ago
  65. 68cdf8a SF #1701207, Fix bogus assertion (and test it!) by Neal Norwitz · 17 years ago
  66. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
  67. 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 18 years ago
  68. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  69. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  70. 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 18 years ago
  71. 02f1d0d _PySys_Init(): It's rarely a good idea to size a buffer to the by Tim Peters · 18 years ago
  72. 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
  73. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  74. 53a6d1d C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t by Skip Montanaro · 18 years ago
  75. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  76. ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 18 years ago
  77. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 19 years ago
  78. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  79. 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 19 years ago
  80. 5118517 Fix minor docstring typo. by Brett Cannon · 19 years ago
  81. d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 19 years ago
  82. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  83. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  84. e86e7a5 svnversion_init(): Use standard layout for function defn. by Tim Peters · 19 years ago
  85. 216b78b Trimmed trailing whitespace. by Tim Peters · 19 years ago
  86. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 19 years ago
  87. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  88. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  89. 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
  90. 6953772 patch [ 1119423 ] python -c readlink()s and stat()s '-c' by Georg Brandl · 19 years ago
  91. 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
  92. 8e3ca8a Flush std{in,out,err} before closing it. Fixes #1074011. by Martin v. Löwis · 20 years ago
  93. 800ba23 This is my patch: by Michael W. Hudson · 20 years ago
  94. 0f5aed4 Remove compiler warning by Neal Norwitz · 20 years ago
  95. f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
  96. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 21 years ago
  97. c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 21 years ago
  98. a2c17c5 Move initialization of sys.std{in,out}.encoding to Py_Initialize. by Martin v. Löwis · 21 years ago
  99. e5e065b New function sys.getcheckinterval(), to complement setcheckinterval(). by Tim Peters · 21 years ago
  100. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago