- d0ebc75 Fix mmap and test_mmap under Windows too (followup to r88022) by Antoine Pitrou · 15 years ago v3.2rc1
- 85f4615 Issue #10916: mmap should not segfault when a file is mapped using 0 as by Antoine Pitrou · 15 years ago
- 0739591 Remove call to nonexisting function (relic from Python 2.x) under #ifdef __INSURE__. Issue 9844 by Eli Bendersky · 15 years ago
- ef4a03f Issue #5109: array.array constructor will now use fast code when by Alexander Belopolsky · 15 years ago
- b7d40d1 Issue #1726687: time.mktime() will now correctly compute value one by Alexander Belopolsky · 15 years ago
- 7234479 Issue #9611: remove useless and dangerous explicit conversion to size_t by Victor Stinner · 15 years ago
- 95f1dfc Issue #9566: Fix pyparse.xmlparser.ParseFile() by Victor Stinner · 15 years ago
- a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode by Antoine Pitrou · 15 years ago
- 06ec45e Issue #10864: limit year to [1; 9999] for strftime() on Solaris by Victor Stinner · 15 years ago
- 301f121 Issue #1777412: Remove all limits on tm_year from time.strftime() by Victor Stinner · 15 years ago
- 73ea29c Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 by Victor Stinner · 15 years ago
- 0dd06f4 Fixed error handling branches. Thanks Victor Stinner for pointing this out. by Alexander Belopolsky · 15 years ago
- b8bb466 Issue #1777412: extended year range of strftime down to 1000. by Alexander Belopolsky · 15 years ago
- c64708a Issue #10827: Changed the rules for 2-digit years. The time.asctime by Alexander Belopolsky · 15 years ago
- 89e3436 Issue #10841: set binary mode on files; the parser translates newlines by Victor Stinner · 15 years ago
- 610e544 Further simplify gettmarg() by Alexander Belopolsky · 15 years ago
- e85da7a Issue #7858: Raise an error properly when os.utime() fails under Windows by Antoine Pitrou · 15 years ago
- ecbb8dc Use PyOS_snprintf for better portability. by Alexander Belopolsky · 15 years ago
- a686725 - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 by Alexander Belopolsky · 15 years ago
- 358e11d Issue #10756: atexit normalizes the exception before displaying it. by Victor Stinner · 15 years ago
- ca1e7ec test_unicode: use ctypes to test PyUnicode_FromFormat() by Victor Stinner · 15 years ago
- 9d6f936 Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead by Victor Stinner · 15 years ago
- ed7e222 Issue #9566: explain why (int)len cannot underflow by Victor Stinner · 15 years ago
- 5da468f Whitespace cleanup by Alexander Belopolsky · 15 years ago
- b9588b5 Issue #8013: time.asctime and time.ctime no longer call system asctime by Alexander Belopolsky · 15 years ago
- 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 15 years ago
- 8848c7a Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if by Victor Stinner · 15 years ago
- e6edec2 Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the by Victor Stinner · 15 years ago
- 23683ef Issue #10333: Remove ancient GC API, which has been deprecated since Python 2.2. by Antoine Pitrou · 15 years ago
- c9c83ba Issue #10806, issue #9905: Fix subprocess pipes when some of the standard by Antoine Pitrou · 15 years ago
- 426e052 Make C helper function more closely match the pure python version, and add tests. by Raymond Hettinger · 15 years ago
- a251a85 #8278: In the Windows implementation of stat() and utime(), by Amaury Forgeot d'Arc · 15 years ago
- e10608c #8013 follow-up: by Georg Brandl · 15 years ago
- abcfcba issue10802: fallback to pipe+fcntl when the pipe2 syscall fails with errno ENOSYS. by Gregory P. Smith · 15 years ago
- e2dc082 Issue #8013: Fixed time.asctime segfault when OS's asctime fails by Alexander Belopolsky · 15 years ago
- 8aa7e99 Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric in #1772833. by Georg Brandl · 15 years ago
- 3b4499c Fix #9333. The symlink function is always available now, raising OSError by Brian Curtin · 15 years ago
- da9ec99 Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 by Victor Stinner · 15 years ago
- 86f65d5 Issue #10254: Fixed a crash and a regression introduced by the implementation of PRI 29. by Alexander Belopolsky · 15 years ago
- 14affb8 fix a compiler warning about err_msg potentially being used uninitialized. by Gregory P. Smith · 15 years ago
- 7f8f418 Issue #10750: The `raw` attribute of buffered IO objects is now read-only. by Antoine Pitrou · 15 years ago
- 52d1b4e #9907: call rl_initialize early when using editline on OSX by R. David Murray · 15 years ago
- 810023d Issue #8844: Regular and recursive lock acquisitions can now be interrupted by Antoine Pitrou · 15 years ago
- 96f3410 Issue 10667: Fast path for collections.Counter by Raymond Hettinger · 15 years ago
- ec07331 #775964: skip YP/NIS entries instead of failing the test by R. David Murray · 15 years ago
- 8edd99d Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest. by Gregory P. Smith · 15 years ago
- 4d55bf9 #10699: fix docstring for tzset: it does not take a parameter by R. David Murray · 15 years ago
- 51ee270 issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag from by Gregory P. Smith · 15 years ago
- 532d091 Reverted accidental commit (from r87159) by Alexander Belopolsky · 15 years ago
- fc55789 Updated UCD version and unicode.org links to Unicode 6.0.0 by Alexander Belopolsky · 15 years ago
- 524f103 Should call Py_INCREF for Py_None (Modules/_ssl.c: PySSL_cipher) by Hirokazu Yamamoto · 15 years ago
- e239d23 Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for NULL by Alexander Belopolsky · 15 years ago
- 7ed117a Issue #10637: Called CloseHandle twice in os.stat/os.lstat (Windows) by Hirokazu Yamamoto · 15 years ago
- 26253bb Should use posix_error here. by Hirokazu Yamamoto · 15 years ago
- 7467351 Sorry, I had introduced tab in source code. by Hirokazu Yamamoto · 15 years ago
- d4cc7bf issue6559: Adds a pass_fds parameter to subprocess.Popen that allows the caller by Gregory P. Smith · 15 years ago
- c29cc6a #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat. by Georg Brandl · 15 years ago
- 9d87119 #1772833: add -q command line option. by Georg Brandl · 15 years ago
- 427d314 Fixed several corner case issues on os.stat/os.lstat related to reparse by Hirokazu Yamamoto · 15 years ago
- d9e833c #6045: provide at least get() and setdefault() for all dbm modules. by Georg Brandl · 15 years ago
- 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 15 years ago
- c4df784 Issue #10272: The ssl module now raises socket.timeout instead of a generic by Antoine Pitrou · 15 years ago
- f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by by Antoine Pitrou · 15 years ago
- d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). by Raymond Hettinger · 15 years ago
- 52173d4 Fix #9333. Expose os.symlink on Windows only when usable. by Brian Curtin · 15 years ago
- 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 15 years ago
- 41e422a Issue #4113: Added custom __repr__ method to functools.partial. by Alexander Belopolsky · 15 years ago
- e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 15 years ago
- 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 15 years ago
- 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 15 years ago
- fc889c4 Fix for #8879. by Brian Curtin · 15 years ago
- 2a7feee Windows: fix leak in posix_listdir. by Stefan Krah · 15 years ago
- 30b341f Fix additional leaks. by Stefan Krah · 15 years ago
- 0e803b3 Further indentation cleanup. by Stefan Krah · 15 years ago
- 9943926 Issue #10383: Fix two leaks. by Stefan Krah · 15 years ago
- 24aa26b Fix compilation warnings seen on Windows. by Amaury Forgeot d'Arc · 15 years ago
- 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 15 years ago
- fc1be6d ifdef a Windows specific section. by Brian Curtin · 15 years ago
- f5e76d0 Fix #10027. st_nlink not set on Windows calls to os.stat/lstat. by Brian Curtin · 15 years ago
- 5cbc71e Issue #10459: Update CJK character names to Unicode 6.0. by Martin v. Löwis · 15 years ago
- a78f74c Issue #8078: Add constants for higher baud rates in the termios module. by Antoine Pitrou · 15 years ago
- fa73555 correct logic when pos is after the string #10467 by Benjamin Peterson · 15 years ago
- 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 15 years ago
- b6d4ee5 Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. by Antoine Pitrou · 15 years ago
- bee3316 Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. by Matthias Klose · 15 years ago
- 47f637c getpath.c: fix test to detech PyUnicode_AsWideChar() failure by Victor Stinner · 15 years ago
- fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method by Antoine Pitrou · 15 years ago
- 922e904 Fix issue10324 - Modules/binascii.c: simplify expressions by Senthil Kumaran · 15 years ago
- 4fe519b Issue #10359: Remove useless (duplicate) initialization in _csv by Victor Stinner · 15 years ago
- 132ef6c Issue #10359: Remove useless comma, invalid in ISO C by Victor Stinner · 15 years ago
- 9f0b51e Issue #10359: Use Py_UNICODE for the typecode in array by Victor Stinner · 15 years ago
- 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 15 years ago
- ae4836d Issue #6011: decode PREFIX, EXEC_PREFIX and PYTHONPATH variables using by Victor Stinner · 15 years ago
- 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 15 years ago
- 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 15 years ago
- 39a6591 Issue #10311: The signal module now restores errno before returning from by Antoine Pitrou · 15 years ago
- 09fff7a Fixed socket_gethostname() on windows. by Hirokazu Yamamoto · 15 years ago
- b5d8204 Issue #10279: fix test_gc under Win64. by Antoine Pitrou · 15 years ago
- 2397dd5 Issue #10314: improve performance of JSON encoding with sort_keys=True by Antoine Pitrou · 15 years ago
- 3cdd5cb Issue #5391: mmap.read_byte() should return unsigned value [0, 255] by Hirokazu Yamamoto · 15 years ago