Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | PEP 466: backport persistent urandom fd (closes #21305) | Benjamin Peterson | 2014-08-28 | 1 | -0/+1 |
| | | | | Patch from Alex Gaynor. | ||||
* | Removed useless Py_LIMITED_API checks. | Serhiy Storchaka | 2014-08-17 | 2 | -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 implement | Serhiy Storchaka | 2014-08-14 | 1 | -0/+4 |
| | | | | some __sizeof__() methods. | ||||
* | after 2.7.8 | Benjamin Peterson | 2014-06-30 | 1 | -1/+1 |
| | |||||
* | bump to 2.7.8v2.7.8 | Benjamin Peterson | 2014-06-30 | 1 | -2/+2 |
| | |||||
* | avoid crashes and lockups from daemon threads during interpreter shutdown ↵ | Benjamin Peterson | 2014-06-17 | 1 | -0/+2 |
| | | | | (#1856) | ||||
* | post 2.7.7 version bump | Benjamin Peterson | 2014-05-31 | 1 | -1/+1 |
| | |||||
* | merge 2.7.7 release branch | Benjamin Peterson | 2014-05-31 | 1 | -3/+3 |
|\ | |||||
| * | bump to 2.7.7 final | Benjamin Peterson | 2014-05-31 | 1 | -3/+3 |
| | | |||||
* | | remove tab (closes #21587) | Benjamin Peterson | 2014-05-26 | 1 | -1/+1 |
|/ | |||||
* | bump to 2.7.7rc1v2.7.7rc1 | Benjamin Peterson | 2014-05-18 | 1 | -4/+4 |
| | |||||
* | use imperative | Benjamin Peterson | 2014-04-08 | 1 | -1/+1 |
| | |||||
* | PySequence_Fast generally returns a list (#16305) | Benjamin Peterson | 2014-04-08 | 1 | -1/+1 |
| | |||||
* | Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. | Victor Stinner | 2013-12-10 | 1 | -2/+2 |
| | |||||
* | Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle. | Alexandre Vassalotti | 2013-12-01 | 1 | -3/+0 |
| | |||||
* | Issue #6477: Added pickling support for singletons and their types. | Alexandre Vassalotti | 2013-12-01 | 1 | -0/+3 |
| | |||||
* | a post-2.7.6 world | Benjamin Peterson | 2013-11-10 | 1 | -1/+1 |
| | |||||
* | 2.7.6 finalv2.7.6 | Benjamin Peterson | 2013-11-10 | 1 | -3/+3 |
| | |||||
* | 2.7.6rc1v2.7.6rc1 | Benjamin Peterson | 2013-10-26 | 1 | -4/+4 |
| | |||||
* | Closes #13867: remove untrue comment about PyWeakref_Check(). | Georg Brandl | 2013-10-08 | 1 | -3/+0 |
| | |||||
* | #18466: fix more typos. Patch by Févry Thibault. | Ezio Melotti | 2013-08-17 | 1 | -1/+1 |
| | |||||
* | onto 2.7.6 | Benjamin Peterson | 2013-05-12 | 1 | -1/+1 |
| | |||||
* | bump version to 2.7.5 | Benjamin Peterson | 2013-05-12 | 1 | -2/+2 |
| | |||||
* | Issue #17703: Fix a regression where an illegal use of Py_DECREF() after ↵ | Antoine Pitrou | 2013-04-15 | 1 | -5/+11 |
| | | | | interpreter finalization can cause a crash. | ||||
* | start cracking on 2.7.5 | Benjamin Peterson | 2013-04-06 | 1 | -1/+1 |
| | |||||
* | change version to 2.7.4v2.7.4 | Benjamin Peterson | 2013-04-06 | 1 | -3/+3 |
| | |||||
* | after 2.7.4rc1 bump | Benjamin Peterson | 2013-03-23 | 1 | -1/+1 |
| | |||||
* | version to 2.7.4rc1v2.7.4rc1 | Benjamin Peterson | 2013-03-23 | 1 | -4/+4 |
| | |||||
* | issue #9090 : Take the same approach for socketmodule as daytimemodule | Kristján Valur Jónsson | 2013-03-19 | 1 | -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 Storchaka | 2013-02-01 | 1 | -3/+0 |
| | |||||
* | Remove trailing whitespaces in cStringIO.h. | Serhiy Storchaka | 2013-01-28 | 1 | -2/+2 |
| | |||||
* | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 2 | -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 Pitrou | 2012-12-08 | 1 | -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 Dickinson | 2012-12-02 | 1 | -8/+21 |
| | | | | some platforms. | ||||
* | Backport 9dd4638de73b. | Stefan Krah | 2012-11-19 | 1 | -1/+1 |
| | |||||
* | Backport 5db6d9ddf6e8. | Stefan Krah | 2012-11-12 | 1 | -0/+8 |
| | |||||
* | Issue #13992: The trashcan mechanism is now thread-safe. This eliminates | Antoine Pitrou | 2012-09-05 | 2 | -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 Nelson | 2012-08-31 | 1 | -4/+4 |
| | |||||
* | Closes #15512: Correct __sizeof__ support for parser | Jesus Cea | 2012-08-03 | 1 | -0/+3 |
| | |||||
* | Issue #13889: On MSVC builds, set FPU control word at runtime for all string ↵ | Mark Dickinson | 2012-04-15 | 1 | -0/+24 |
| | | | | <-> float conversions. Patch by Samuel Iseli and Stefan Krah. | ||||
* | we live in a post 2.7.3 world | Benjamin Peterson | 2012-04-11 | 1 | -1/+1 |
| | |||||
* | merge 2.7.3 release branch | Benjamin Peterson | 2012-04-09 | 1 | -3/+3 |
|\ | |||||
| * | bump to 2.7.3 finalv2.7.3 | Benjamin Peterson | 2012-04-09 | 1 | -3/+3 |
| | | |||||
* | | merge from 2.7 release branch | Benjamin Peterson | 2012-03-15 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | bump to 2.7.3rc2v2.7.3rc2 | Benjamin Peterson | 2012-03-15 | 1 | -2/+2 |
| | | |||||
* | | - rename configure.in to configure.ac | Matthias Klose | 2012-03-14 | 1 | -1/+1 |
|/ | | | | - change references from configure.in to configure.ac | ||||
* | bump to 2.7.3rc1v2.7.3rc1 | Benjamin Peterson | 2012-02-23 | 1 | -4/+4 |
| | |||||
* | Fix crash at startup with -W options. | Antoine Pitrou | 2012-02-21 | 2 | -0/+2 |
| | |||||
* | merge 2.6 | Benjamin Peterson | 2012-02-21 | 1 | -0/+4 |
|\ | |||||
| * | ensure no one tries to hash things before the random seed is found | Benjamin Peterson | 2012-02-21 | 1 | -0/+4 |
| | |