summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* Added the const qualifier for char* argument of Py_EnterRecursiveCall().Serhiy Storchaka2015-06-211-1/+1
|
* Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.Serhiy Storchaka2015-06-211-1/+1
| | | | Patch by Michael Ensslin.
* Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-142-2/+2
|
* Merge 3.4.3 release engineering changes back into 3.4.Larry Hastings2015-02-261-1/+1
|\
| * Fix typo: PyMem_Alloc => PyMem_MallocVictor Stinner2015-02-111-1/+1
| |
* | Post-release changes for 3.4.3.Larry Hastings2015-02-261-1/+1
| |
* | Release bump for 3.4.3 final.Larry Hastings2015-02-231-3/+3
|/
* Post-release updates for Python 3.4.3rc1.Larry Hastings2015-02-081-1/+1
|
* Version bump for 3.4.3rc1.Larry Hastings2015-02-081-4/+4
|
* Issue #22668: Ensure that format strings survive slicing after casting.Stefan Krah2015-01-291-2/+2
|
* fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-132-2/+2
| | | | Patch by Karan Goel.
* Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-1/+1
|
* Issue #22453: Warn against the use of leaking macro PyObject_REPR().Serhiy Storchaka2014-11-181-2/+6
|
* Issue #18637: Fixed an error in _PyNode_SizeOf declaration.Serhiy Storchaka2014-11-181-1/+1
| | | | Patch by Roumen Petrov.
* Issue #22193: Fixed integer overflow error in sys.getsizeof().Serhiy Storchaka2014-11-151-1/+1
| | | | Fixed an error in _PySys_GetSizeOf declaration.
* Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-1/+3
| | | | _PyErr_ChainExceptions() function.
* Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ↵Antoine Pitrou2014-10-081-0/+1
| | | | | | exception tracebacks. Initial patch by Mark Shannon.
* Post-release changes after 3.4.2 final.Larry Hastings2014-10-081-1/+1
|
* Release bump for 3.4.2 final.v3.4.2Larry Hastings2014-10-061-3/+3
|
* Bump version number for 3.4.2rc1 release.v3.4.2rc1Larry Hastings2014-09-201-4/+4
|
* Issue #22166: clear codec caches in test_codecsNick Coghlan2014-09-151-0/+4
|
* Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-141-0/+4
| | | | some __sizeof__() methods.
* a post 3.4.1 worldBenjamin Peterson2014-05-261-1/+1
|
* remove tab (closes #21587)Benjamin Peterson2014-05-261-1/+1
|
* Version bump for 3.4.1.v3.4.1Larry Hastings2014-05-181-3/+3
|
* Post-release version bump for 3.4.1rc1. Sorry it's late!Larry Hastings2014-05-181-1/+1
|
* Version bump for 3.4.1rc1.v3.4.1rc1Larry Hastings2014-05-041-4/+4
|
* use imperativeBenjamin Peterson2014-04-081-1/+1
|
* Issue #19537: Fix PyUnicode_DATA() alignment under m68k. Patch by Andreas ↵Antoine Pitrou2014-03-231-0/+3
| | | | Schwab.
* Merged default into 3.4 branch. 3.4 branch is now effectively 3.4.1rc1.Larry Hastings2014-03-172-4/+15
|\
| * cast negative numbers to size_t before shifting them (#20929)Benjamin Peterson2014-03-151-1/+1
| |
| * Issue #20320: select.select() and select.kqueue.control() now round the timeoutVictor Stinner2014-02-161-3/+14
| | | | | | | | | | | | aways from zero, instead of rounding towards zero. It should make test_asyncio more reliable, especially test_timeout_rounding() test.
| * Merge Python 3.4.0rc1 release branch.Larry Hastings2014-02-112-1/+2
| |\
| | * Issue #19255: The builtins module is restored to initial value beforeSerhiy Storchaka2014-02-102-1/+2
| | | | | | | | | | | | cleaning other modules. The sys and builtins modules are cleaned last.
* | | Post-release verion bump for 3.4.0(+).Larry Hastings2014-03-171-1/+1
| | |
* | | Release bump for 3.4.0 final.Larry Hastings2014-03-161-3/+3
| | |
* | | Mark branch as being after Python 3.4.0rc3.Larry Hastings2014-03-161-1/+1
| | |
* | | Version bump for 3.4.0rc3.v3.4.0rc3Larry Hastings2014-03-091-2/+2
| | |
* | | Issue #19255: The builtins module is restored to initial value beforeSerhiy Storchaka2014-02-102-1/+2
| | | | | | | | | | | | cleaning other modules. The sys and builtins modules are cleaned last.
* | | Version bump for Python 3.4.0rc2.v3.4.0rc2Larry Hastings2014-02-231-2/+2
|/ /
* | Python 3.4.0rc1: Post-release updates.Larry Hastings2014-02-111-1/+1
| |
* | Python 3.4.0rc1: Version bump.v3.4.0rc1Larry Hastings2014-02-101-3/+3
|/
* Issue #20517: Removed unnecessary new (short-lived) functions from PyErr.Larry Hastings2014-02-101-25/+0
|
* Issue #20517: Functions in the os module that accept two filenamesLarry Hastings2014-02-101-0/+30
| | | | | | now register both filenames in the exception on failure. This required adding new C API functions allowing OSError exceptions to reference two filenames instead of one.
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-091-2/+2
| | | | | | | The new syntax is highly human readable while still preventing false positives. The syntax also extends Python syntax to denote "self" and positional-only parameters, allowing inspect.Signature objects to be totally accurate for all supported builtins in Python 3.4.
* Close #20404: blacklist non-text encodings in io.TextIOWrapperNick Coghlan2014-02-041-0/+20
| | | | | | | | | - io.TextIOWrapper (and hence the open() builtin) now use the internal codec marking system added for issue #19619 - also tweaked the C code to only look up the encoding once, rather than multiple times - the existing output type checks remain in place to deal with unmarked third party codecs.
* Issue #17162: Add PyType_GetSlot.Martin v. Löwis2014-02-041-0/+3
|
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-4/+2
| | | | | | | | | | annotate text signatures in docstrings, resulting in fewer false positives. "self" parameters are also explicitly marked, allowing inspect.Signature() to authoritatively detect (and skip) said parameters. Issue #20326: Argument Clinic now generates separate checksums for the input and output sections of the block, allowing external tools to verify that the input has not changed (and thus the output is not out-of-date).
* Post-release bump for 3.4.0 beta 3.Larry Hastings2014-01-271-1/+1
|
* Version bump for 3.4.0b3.v3.4.0b3Larry Hastings2014-01-261-2/+2
|