summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* PEP 466: backport persistent urandom fd (closes #21305)Benjamin Peterson2014-08-281-0/+1
| | | | Patch from Alex Gaynor.
* Removed useless Py_LIMITED_API checks.Serhiy Storchaka2014-08-172-4/+0
| | | | | Support for Py_LIMITED_API was introduced in Python 3.2. Thanks Arfrever Frehtes Taifersar Arahesis.
* Issue #22193: Added private function _PySys_GetSizeOf() needed to implementSerhiy Storchaka2014-08-141-0/+4
| | | | some __sizeof__() methods.
* after 2.7.8Benjamin Peterson2014-06-301-1/+1
|
* bump to 2.7.8v2.7.8Benjamin Peterson2014-06-301-2/+2
|
* avoid crashes and lockups from daemon threads during interpreter shutdown ↵Benjamin Peterson2014-06-171-0/+2
| | | | (#1856)
* post 2.7.7 version bumpBenjamin Peterson2014-05-311-1/+1
|
* merge 2.7.7 release branchBenjamin Peterson2014-05-311-3/+3
|\
| * bump to 2.7.7 finalBenjamin Peterson2014-05-311-3/+3
| |
* | remove tab (closes #21587)Benjamin Peterson2014-05-261-1/+1
|/
* bump to 2.7.7rc1v2.7.7rc1Benjamin Peterson2014-05-181-4/+4
|
* use imperativeBenjamin Peterson2014-04-081-1/+1
|
* PySequence_Fast generally returns a list (#16305)Benjamin Peterson2014-04-081-1/+1
|
* Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.Victor Stinner2013-12-101-2/+2
|
* Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.Alexandre Vassalotti2013-12-011-3/+0
|
* Issue #6477: Added pickling support for singletons and their types.Alexandre Vassalotti2013-12-011-0/+3
|
* a post-2.7.6 worldBenjamin Peterson2013-11-101-1/+1
|
* 2.7.6 finalv2.7.6Benjamin Peterson2013-11-101-3/+3
|
* 2.7.6rc1v2.7.6rc1Benjamin Peterson2013-10-261-4/+4
|
* Closes #13867: remove untrue comment about PyWeakref_Check().Georg Brandl2013-10-081-3/+0
|
* #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
|
* onto 2.7.6Benjamin Peterson2013-05-121-1/+1
|
* bump version to 2.7.5Benjamin Peterson2013-05-121-2/+2
|
* Issue #17703: Fix a regression where an illegal use of Py_DECREF() after ↵Antoine Pitrou2013-04-151-5/+11
| | | | interpreter finalization can cause a crash.
* start cracking on 2.7.5Benjamin Peterson2013-04-061-1/+1
|
* change version to 2.7.4v2.7.4Benjamin Peterson2013-04-061-3/+3
|
* after 2.7.4rc1 bumpBenjamin Peterson2013-03-231-1/+1
|
* version to 2.7.4rc1v2.7.4rc1Benjamin Peterson2013-03-231-4/+4
|
* issue #9090 : Take the same approach for socketmodule as daytimemoduleKristján Valur Jónsson2013-03-191-0/+3
| | | | | when it needs support from timemodule (which is a .so on linux): link in timemodule.c for the required functions.
* Issue #1783: Remove declarations of nonexistent private variables.Serhiy Storchaka2013-02-011-3/+0
|
* Remove trailing whitespaces in cStringIO.h.Serhiy Storchaka2013-01-281-2/+2
|
* Issue #15989: Fix several occurrences of integer overflowSerhiy Storchaka2013-01-192-0/+2
| | | | | | | when result of PyInt_AsLong() or PyLong_AsLong() narrowed to int without checks. This is a backport of changesets 13e2e44db99d and 525407d89277.
* Issue #16602: When a weakref's target was part of a long deallocation chain, ↵Antoine Pitrou2012-12-081-1/+11
| | | | | | the object could remain reachable through its weakref even though its refcount had dropped to zero. Thanks to Eugene Toder for diagnosing and reporting the issue.
* Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on ↵Mark Dickinson2012-12-021-8/+21
| | | | some platforms.
* Backport 9dd4638de73b.Stefan Krah2012-11-191-1/+1
|
* Backport 5db6d9ddf6e8.Stefan Krah2012-11-121-0/+8
|
* Issue #13992: The trashcan mechanism is now thread-safe. This eliminatesAntoine Pitrou2012-09-052-9/+21
| | | | | | | | | | | sporadic crashes in multi-thread programs when several long deallocator chains ran concurrently and involved subclasses of built-in container types. Because of this change, a couple extension modules compiled for 2.7.4 (those which use the trashcan mechanism, despite it being undocumented) will not be loadable by 2.7.3 and earlier. However, extension modules compiled for 2.7.3 and earlier will be loadable by 2.7.4.
* Remove trailing whitespace in order to silence warnings on HP-UX.Trent Nelson2012-08-311-4/+4
|
* Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-031-0/+3
|
* Issue #13889: On MSVC builds, set FPU control word at runtime for all string ↵Mark Dickinson2012-04-151-0/+24
| | | | <-> float conversions. Patch by Samuel Iseli and Stefan Krah.
* we live in a post 2.7.3 worldBenjamin Peterson2012-04-111-1/+1
|
* merge 2.7.3 release branchBenjamin Peterson2012-04-091-3/+3
|\
| * bump to 2.7.3 finalv2.7.3Benjamin Peterson2012-04-091-3/+3
| |
* | merge from 2.7 release branchBenjamin Peterson2012-03-151-2/+2
|\ \ | |/
| * bump to 2.7.3rc2v2.7.3rc2Benjamin Peterson2012-03-151-2/+2
| |
* | - rename configure.in to configure.acMatthias Klose2012-03-141-1/+1
|/ | | | - change references from configure.in to configure.ac
* bump to 2.7.3rc1v2.7.3rc1Benjamin Peterson2012-02-231-4/+4
|
* Fix crash at startup with -W options.Antoine Pitrou2012-02-212-0/+2
|
* merge 2.6Benjamin Peterson2012-02-211-0/+4
|\
| * ensure no one tries to hash things before the random seed is foundBenjamin Peterson2012-02-211-0/+4
| |