summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
| * | | Issue #27343: Fixed error message for conflicting initializers of ctypes.Stru...Serhiy Storchaka2016-06-181-7/+2
* | | | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Dani...Steve Dower2016-06-171-3/+23
* | | | ctypes: the type of b_size is Py_ssize_t.Serhiy Storchaka2016-06-171-4/+4
|\ \ \ \ | |/ / /
| * | | ctypes: the type of b_size is Py_ssize_t.Serhiy Storchaka2016-06-171-4/+4
* | | | Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-163-22/+31
|\ \ \ \ | |/ / /
| * | | Issue #27330: Fixed possible leaks in the ctypes module.Serhiy Storchaka2016-06-163-22/+31
* | | | Issue #26862: SYS_getdents64 does not need to be defined on android API 21.Xavier de Gaye2016-06-151-2/+1
* | | | Issue #16864: Cursor.lastrowid now supports REPLACE statementBerker Peksag2016-06-141-1/+3
* | | | merge 3.5Benjamin Peterson2016-06-142-4/+4
|\ \ \ \ | |/ / /
| * | | merge 3.4Benjamin Peterson2016-06-142-4/+4
| |\ \ \ | | |/ /
| | * | sync ordering of stddef.h includes with expat 2.1.1Benjamin Peterson2016-06-142-4/+4
* | | | - Modules/_collectionsmodule.c: Mark one more internal symbol as static.doko@ubuntu.com2016-06-141-1/+1
* | | | Issue #16182: Merge readline locale fix from 3.5Martin Panter2016-06-141-38/+94
|\ \ \ \ | |/ / /
| * | | Issue #16182: Fix readline begidx, endidx, and use locale encodingMartin Panter2016-06-141-38/+94
* | | | - Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constantsdoko@ubuntu.com2016-06-132-0/+4
* | | | Merge from 3.5Berker Peksag2016-06-121-1/+1
|\ \ \ \ | |/ / /
| * | | Fix typo in _sqlite/module.hBerker Peksag2016-06-121-1/+1
* | | | Issue #27190: Merge from 3.5Berker Peksag2016-06-121-0/+4
|\ \ \ \ | |/ / /
| * | | Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1Berker Peksag2016-06-121-0/+4
* | | | Issue #25455: Fixed a crash in repr of recursive functools.partial objects.Serhiy Storchaka2016-06-121-17/+22
|\ \ \ \ | |/ / /
| * | | Issue #25455: Fixed a crash in repr of recursive functools.partial objects.Serhiy Storchaka2016-06-121-17/+22
* | | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.Serhiy Storchaka2016-06-121-3/+16
|\ \ \ \ | |/ / /
| * | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag.Serhiy Storchaka2016-06-121-3/+16
* | | | merge 3.5 (#26556)Benjamin Peterson2016-06-113-6/+24
|\ \ \ \ | |/ / /
| * | | merge 3.4 (#26556)Benjamin Peterson2016-06-113-6/+24
| |\ \ \ | | |/ /
| | * | upgrade expt to 2.1.1 (closes #26556)Benjamin Peterson2016-06-113-6/+24
* | | | Issue #27186: Add os.PathLike support to DirEntryBrett Cannon2016-06-101-0/+10
* | | | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now supportSerhiy Storchaka2016-06-091-0/+18
* | | | Clarify documentation for os.fspath().Brett Cannon2016-06-092-8/+8
* | | | Issue #26305: Argument Clinic now uses braces in C code as required by PEP 7.Serhiy Storchaka2016-06-0942-677/+1311
* | | | Issue #26305: Argument Clinic now escapes braces. No need to double them.Serhiy Storchaka2016-06-091-7/+7
|\ \ \ \ | |/ / /
| * | | Issue #26305: Argument Clinic now escapes braces. No need to double them.Serhiy Storchaka2016-06-091-7/+7
| * | | Fix a comment.Barry Warsaw2016-06-081-1/+2
* | | | Issue #27066: Fixed SystemError if a custom opener (for open()) returns aBarry Warsaw2016-06-081-1/+7
|\ \ \ \ | |/ / /
| * | | Issue #27066: Fixed SystemError if a custom opener (for open()) returnsBarry Warsaw2016-06-081-1/+6
* | | | Issue #27164: Merge raw Deflate zdict support from 3.5Martin Panter2016-06-051-18/+44
|\ \ \ \ | |/ / /
| * | | Issue #27164: Allow decompressing raw Deflate streams with predefined zdictMartin Panter2016-06-051-18/+44
* | | | issue27186: add open/io.open; patch by Jelle ZijlstraEthan Furman2016-06-041-16/+32
* | | | issue27186: add C version of os.fspath(); patch by Jelle ZijlstraEthan Furman2016-06-042-1/+84
* | | | merge 3.5Benjamin Peterson2016-06-021-19/+2
|\ \ \ \ | |/ / /
| * | | remove (hilarious) defaults for various constants getpath.c needsBenjamin Peterson2016-06-021-19/+2
* | | | replace custom validation logic in the parse module with a simple DFA validat...Benjamin Peterson2016-06-021-2452/+93
* | | | Issue #27171: Fix typo in exception messageMartin Panter2016-06-021-1/+1
* | | | Issue #27171: Merge typo fixes from 3.5Martin Panter2016-06-024-7/+7
|\ \ \ \ | |/ / /
| * | | Issue #27171: Fix typos in documentation, comments, and test function namesMartin Panter2016-06-024-7/+7
* | | | Issue #27125: Merge typo fixes from 3.5Martin Panter2016-05-302-2/+2
|\ \ \ \ | |/ / /
| * | | Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-302-2/+2
* | | | Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-0/+2
|\ \ \ \ | |/ / /
| * | | Fix issue27146 - add stdio.h include to posixmodule.c for ctermid().Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-05-281-0/+2
* | | | Issue #20699: Merge io bytes-like fixes from 3.5Martin Panter2016-05-286-12/+13
|\ \ \ \ | |/ / /