summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* #9907: call rl_initialize early when using editline on OSXR. David Murray2010-12-181-2/+15
* Issue #8844: Regular and recursive lock acquisitions can now be interruptedAntoine Pitrou2010-12-151-13/+67
* Issue 10667: Fast path for collections.CounterRaymond Hettinger2010-12-151-1/+67
* #775964: skip YP/NIS entries instead of failing the testR. David Murray2010-12-141-1/+3
* Issue #6559: fix the subprocess.Popen pass_fds implementation. Add a unittest.Gregory P. Smith2010-12-141-1/+1
* #10699: fix docstring for tzset: it does not take a parameterR. David Murray2010-12-141-1/+1
* issue7213: Open the pipes used by subprocesses with the FD_CLOEXEC flag fromGregory P. Smith2010-12-131-0/+44
* Reverted accidental commit (from r87159)Alexander Belopolsky2010-12-101-12/+22
* Updated UCD version and unicode.org links to Unicode 6.0.0Alexander Belopolsky2010-12-101-22/+12
* Should call Py_INCREF for Py_None (Modules/_ssl.c: PySSL_cipher)Hirokazu Yamamoto2010-12-091-2/+4
* Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-088-77/+115
* Issue #10637: Called CloseHandle twice in os.stat/os.lstat (Windows)Hirokazu Yamamoto2010-12-071-4/+4
* Should use posix_error here.Hirokazu Yamamoto2010-12-051-5/+3
* Sorry, I had introduced tab in source code.Hirokazu Yamamoto2010-12-051-1/+1
* issue6559: Adds a pass_fds parameter to subprocess.Popen that allows the callerGregory P. Smith2010-12-041-9/+33
* #1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the...Georg Brandl2010-12-041-9/+17
* #1772833: add -q command line option.Georg Brandl2010-12-041-3/+10
* Fixed several corner case issues on os.stat/os.lstat related to reparseHirokazu Yamamoto2010-12-041-93/+110
* #6045: provide at least get() and setdefault() for all dbm modules.Georg Brandl2010-12-041-0/+47
* Merge branches/pep-0384.Martin v. Löwis2010-12-038-13/+296
* Issue #10272: The ssl module now raises socket.timeout instead of a genericAntoine Pitrou2010-12-033-7/+10
* Issue #10478: Reentrant calls inside buffered IO objects (for example byAntoine Pitrou2010-12-031-19/+52
* Simplify the signature for itertools.accumulate() to match numpy. Handle one...Raymond Hettinger2010-12-031-23/+15
* Fix #9333. Expose os.symlink on Windows only when usable.Brian Curtin2010-12-021-8/+55
* Add itertools.accumulate().Raymond Hettinger2010-12-011-0/+142
* Issue #4113: Added custom __repr__ method to functools.partial.Alexander Belopolsky2010-12-011-1/+43
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-306-7/+0
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-308-8/+0
* Issue #10323: Predictable final state for slice().Raymond Hettinger2010-11-301-3/+4
* Fix for #8879.Brian Curtin2010-11-281-2/+18
* Windows: fix leak in posix_listdir.Stefan Krah2010-11-271-0/+1
* Fix additional leaks.Stefan Krah2010-11-271-0/+2
* Further indentation cleanup.Stefan Krah2010-11-261-49/+49
* Issue #10383: Fix two leaks.Stefan Krah2010-11-261-7/+11
* Fix compilation warnings seen on Windows.Amaury Forgeot d'Arc2010-11-251-7/+7
* Fix #8879. Add os.link support to Windows.Brian Curtin2010-11-241-0/+32
* ifdef a Windows specific section.Brian Curtin2010-11-241-0/+2
* Fix #10027. st_nlink not set on Windows calls to os.stat/lstat.Brian Curtin2010-11-241-302/+279
* Issue #10459: Update CJK character names to Unicode 6.0.Martin v. Löwis2010-11-221-4/+7
* Issue #8078: Add constants for higher baud rates in the termios module.Antoine Pitrou2010-11-201-0/+37
* correct logic when pos is after the string #10467Benjamin Peterson2010-11-201-3/+8
* Issue #10443: Add the SSLContext.set_default_verify_paths() method.Antoine Pitrou2010-11-171-0/+12
* Issue #10440: Support RUSAGE_THREAD as a constant in the resource module.Antoine Pitrou2010-11-171-0/+4
* Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static.Matthias Klose2010-11-161-1/+1
* getpath.c: fix test to detech PyUnicode_AsWideChar() failureVictor Stinner2010-11-101-4/+4
* Issue #10022: The dictionary returned by the `getpeercert()` methodAntoine Pitrou2010-11-091-53/+47
* Fix issue10324 - Modules/binascii.c: simplify expressionsSenthil Kumaran2010-11-091-2/+1
* Issue #10359: Remove useless (duplicate) initialization in _csvVictor Stinner2010-11-091-1/+1
* Issue #10359: Remove useless comma, invalid in ISO CVictor Stinner2010-11-091-2/+2
* Issue #10359: Use Py_UNICODE for the typecode in arrayVictor Stinner2010-11-091-7/+9