- da8652d9 Issue #7117 (backport py3k float repr) continued: by Mark Dickinson · 15 years ago
- 7274cff Update docstrings for sys.getdlopenflags() and sys.setdlopenflags(). by Alexandre Vassalotti · 15 years ago
- 87e5006 handle errors from _PyObject_LookupSpecial when __get__ fails by Benjamin Peterson · 15 years ago
- e5afa3b support building with subversion 1.7 #6094 by Benjamin Peterson · 15 years ago
- af1692a convert some more special methods to use _PyObject_LookupSpecial by Benjamin Peterson · 16 years ago
- efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
- 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 16 years ago
- 1b3bef2 Issue #4915: Port sysmodule to Windows CE. by Martin v. Löwis · 16 years ago
- 4762902 Added garbage collector overhead and optional default return value to by Robert Schuppenies · 16 years ago
- d2cd86d Fixed Issue3122 and extended sys.getsizeof tests for built-in types. by Robert Schuppenies · 16 years ago
- 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 16 years ago
- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
- 7a6de8b Some style nits. Also clarify in the docstrings what __sizeof__ does. by Georg Brandl · 16 years ago
- 51df064 Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. by Robert Schuppenies · 16 years ago
- 9981589 New environment variable PYTHONIOENCODING. by Martin v. Löwis · 16 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- 4dd019f Patch #2488: Add sys.maxsize. by Martin v. Löwis · 16 years ago
- be1501b Fix sys.flags to properly expose bytes_warning. by Brett Cannon · 17 years ago
- af748c3 Implemented PEP 370 by Christian Heimes · 17 years ago
- f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
- 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
- 858a770 Fix indentation in sysmodule.c by Benjamin Peterson · 17 years ago
- 40f0a87 Fix a bug in PySys_HasWarnOption() where it was not properly checking the by Brett Cannon · 17 years ago
- e974689 Re-implement the 'warnings' module in C. This allows for usage of the by Brett Cannon · 17 years ago
- d5b635f Make Py3k warnings consistent w.r.t. punctuation; also respect the by Georg Brandl · 17 years ago
- a113bd9 Added quick hack for bzr by Christian Heimes · 17 years ago
- 6a453c3 Added quick hack for bzr by Christian Heimes · 17 years ago
- 5a44424 #2358: add py3k warning to sys.exc_clear(). by Georg Brandl · 17 years ago
- 422051a Patch #1953 by Christian Heimes · 17 years ago
- 796fc31 The previous change was causing a segfault after multiple calls to Py_Initialize() and Py_Finalize(). by Christian Heimes · 17 years ago
- 0d92443 Fixed some references leaks in sys. by Christian Heimes · 17 years ago
- 908caac Added clear cache methods to clear the internal type lookup cache for ref leak test runs. by Christian Heimes · 17 years ago
- 5611289 #1648: add sys.gettrace() and sys.getprofile(). by Georg Brandl · 17 years ago
- 7ce9b18 Typo fixes by Andrew M. Kuchling · 17 years ago
- f31b69f Applied patch #1816: sys.flags patch by Christian Heimes · 17 years ago
- 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
- dfdfaab Feature #1534 by Christian Heimes · 17 years ago
- 28104c5 Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 by Christian Heimes · 17 years ago
- 68cdf8a SF #1701207, Fix bogus assertion (and test it!) by Neal Norwitz · 18 years ago
- afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
- 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 18 years ago
- 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
- e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
- 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 18 years ago
- 02f1d0d _PySys_Init(): It's rarely a good idea to size a buffer to the by Tim Peters · 18 years ago
- 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
- 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
- 53a6d1d C++ compiler cleanup: extern "C" a couple declarations, cast int to size_t by Skip Montanaro · 19 years ago
- e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 19 years ago
- ea62d25 Bug #1421664: Set sys.stderr.encoding by Martin v. Löwis · 19 years ago
- 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 19 years ago
- 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
- 4281cef Use Py_ssize_t for _Py_RefTotal. by Neal Norwitz · 19 years ago
- 5118517 Fix minor docstring typo. by Brett Cannon · 19 years ago
- d96ee90 Use Py_ssize_t to count the by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- e86e7a5 svnversion_init(): Use standard layout for function defn. by Tim Peters · 19 years ago
- 216b78b Trimmed trailing whitespace. by Tim Peters · 19 years ago
- 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 19 years ago
- 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
- 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
- 11bd119 SF bug #887946, segfault if redirecting directory by Neal Norwitz · 19 years ago
- 6953772 patch [ 1119423 ] python -c readlink()s and stat()s '-c' by Georg Brandl · 19 years ago
- 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
- 8e3ca8a Flush std{in,out,err} before closing it. Fixes #1074011. by Martin v. Löwis · 20 years ago
- 800ba23 This is my patch: by Michael W. Hudson · 20 years ago
- 0f5aed4 Remove compiler warning by Neal Norwitz · 20 years ago
- f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
- e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 21 years ago
- c69ebe8 Enable the profiling of C functions (builtins and extensions) by Nicholas Bastin · 21 years ago
- a2c17c5 Move initialization of sys.std{in,out}.encoding to Py_Initialize. by Martin v. Löwis · 21 years ago
- e5e065b New function sys.getcheckinterval(), to complement setcheckinterval(). by Tim Peters · 21 years ago
- 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 22 years ago
- c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 22 years ago
- a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 22 years ago
- 73d538b Always initialize Py_FileSystemDefaultEncoding on Unix in Py_Initialize, by Martin v. Löwis · 22 years ago
- 46d3dc3 - New function sys.exc_clear() clears the current exception. This is by Guido van Rossum · 22 years ago
- 162e38c - sys.path[0] (the directory from which the script is loaded) is now by Guido van Rossum · 22 years ago
- 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 22 years ago
- 27bb71e Patch #664376: sys.path[0] should contain absolute pathname. by Thomas Heller · 22 years ago
- 8696ebc Add os.path.supports_unicode_filenames for all platforms, by Mark Hammond · 22 years ago
- d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
- 8e790e7 expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456. by Skip Montanaro · 22 years ago
- 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
- 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
- e739a0d Got rid of an extraneous semicolon. by Jack Jansen · 22 years ago
- ba3ff1b Fix the docstring for sys.getrefcount(). Closes SF bug #571759. by Fred Drake · 22 years ago
- a3fb4f7 Patch #505375: Make doc strings optional. by Martin v. Löwis · 22 years ago
- 0c766a0 Change sys_exit to use METH_VARARGS. by Neal Norwitz · 23 years ago
- 0f2103f Fix wording of sys.exit docstring. Close SF bug 534113. by Neil Schemenauer · 23 years ago
- 290d31e SF #506611, fix sys.setprofile(), sys.settrace() core dumps by Neal Norwitz · 23 years ago
- 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
- cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
- faad5ad mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to by Tim Peters · 23 years ago
- 080d5b3 mywrite(): The test for trouble in PyOS_vsnprintf was wrong on both by Tim Peters · 23 years ago
- 5d3d134 Use PyOS_vsnprintf() and check its return value. by Jeremy Hylton · 23 years ago
- 107b7da Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571. by Martin v. Löwis · 23 years ago
- a768882 Convert getrefcount() to METH_O, and sys_excepthook() to use by Fred Drake · 23 years ago
- 8f51f54 Rationalize the events passed to the profiler (no changes for the tracer). by Fred Drake · 23 years ago