summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* add a AST validator (closes #12575)Benjamin Peterson2011-08-091-0/+1
|
* forgotten in f578ca44193dBenjamin Peterson2011-08-091-2/+2
|
* add a asdl bytes type, so Bytes.s be properly typecheckedBenjamin Peterson2011-08-091-0/+1
|
* #10741: merge with 3.2Sandro Tosi2011-08-071-1/+1
|\
| * #10741: add documentation for PyGILState_GetThisThreadState()Sandro Tosi2011-08-071-1/+1
| |
| * Post-release steps for 3.2.1.Georg Brandl2011-07-091-1/+1
| |
| * Bump version to 3.2.1.v3.2.1Georg Brandl2011-07-091-3/+3
| |
| * Post-release steps.Georg Brandl2011-07-041-1/+1
| |
| * Bump to 3.2.1rc2.Georg Brandl2011-07-031-2/+2
| |
| * Set up branch to be rc2 next.Georg Brandl2011-05-211-1/+1
| |
| * Bump to 3.2.1rc1.v3.2.1rc1Georg Brandl2011-05-151-2/+2
| |
| * Bump to 3.2.1b1.Georg Brandl2011-05-081-4/+4
| |
* | excise the remains of STOP_CODE, which hasn't done anything useful for yearsBenjamin Peterson2011-07-181-1/+0
| |
* | Issue #11863: Remove support for legacy systems deprecated in Python 3.2Antoine Pitrou2011-07-081-5/+0
| | | | | | | | | | (following PEP 11). These systems are systems using Mach C Threads, SunOS lightweight processes, GNU pth threads and IRIX threads.
* | add patchlevel to version stringBenjamin Peterson2011-07-081-1/+1
| |
* | Issue #9642: Uniformize the tests on the availability of the mbcs codecVictor Stinner2011-07-041-2/+6
| | | | | | | | Add a new HAVE_MBCS define.
* | map cells to arg slots at code creation time (closes #12399)Benjamin Peterson2011-06-261-0/+6
| | | | | | | | This removes nested loops in PyEval_EvalCodeEx.
* | unify TryExcept and TryFinally (closes #12199)Benjamin Peterson2011-05-291-15/+8
| |
* | reflect with statements with multiple items in the AST (closes #12106)Benjamin Peterson2011-05-271-5/+14
| |
* | make PyImport_ImportModuleLevel's first arg const like similiar functions ↵Benjamin Peterson2011-05-251-1/+1
| | | | | | | | (closes #12173)
* | Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-0/+2
|\ \ | |/ | | | | | | interpreter is shutting down; instead, these threads are now killed when they try to take the GIL.
| * Issue #1856: Avoid crashes and lockups when daemon threads run while theAntoine Pitrou2011-05-041-0/+2
| | | | | | | | | | interpreter is shutting down; instead, these threads are now killed when they try to take the GIL.
| * Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-261-0/+1
| | | | | | | | | | | | | | subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure.
* | Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-301-1/+1
| |
* | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*Antoine Pitrou2011-04-271-0/+1
|\ \ | |/ | | | | | | APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali.
| * Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*Antoine Pitrou2011-04-271-0/+1
| | | | | | | | | | APIs, to avoid a crash with the pthread implementation in RHEL 5. Patch by Charles-François Natali.
* | Issue #10914: Initialize correctly the filesystem codec when creating a newVictor Stinner2011-04-261-0/+1
| | | | | | | | | | | | | | subinterpreter to fix a bootstrap issue with codecs implemented in Python, as the ISO-8859-15 codec. Add fscodec_initialized attribute to the PyInterpreterState structure.
* | PyGILState_Ensure(), PyGILState_Release(), PyGILState_GetThisThreadState() areVictor Stinner2011-04-261-3/+7
| | | | | | | | not available if Python is compiled without threads.
* | Issue #11223: Add threading._info() function providing informations about theVictor Stinner2011-04-191-1/+3
| | | | | | | | | | | | | | | | | | thread implementation. Skip test_lock_acquire_interruption() and test_rlock_acquire_interruption() of test_threadsignals if a thread lock is implemented using a POSIX mutex and a POSIX condition variable. A POSIX condition variable cannot be interrupted by a signal (e.g. on Linux, the futex system call is restarted).
* | Issue #9904: fix and clarify some comments + fix indentation in symtable codeEli Bendersky2011-04-101-4/+7
| |
* | Issue #10785: Store the filename as Unicode in the Python parser.Victor Stinner2011-04-041-2/+7
| |
* | Issue #11393: _Py_DumpTraceback() writes the header even if there is no frameVictor Stinner2011-04-011-3/+1
| |
* | Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-301-0/+40
| |
* | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-261-1/+0
| |
* | Closes #11210: Remove PyErr_SetFromWindowsErrWithFilenameObject() of pyerrors.hVictor Stinner2011-03-211-2/+0
| | | | | | | | PyErr_SetFromWindowsErrWithFilenameObject() was never implemented.
* | Issue #3080: Add PyImport_ImportModuleLevelObject() functionVictor Stinner2011-03-141-0/+7
| | | | | | | | Use it for the builtin __import__ function.
* | Issue #3080: Document the name attribute of the _inittab structureVictor Stinner2011-03-071-1/+1
| | | | | | | | The name is an ASCII encoded string.
* | Issue #3080: Import builtins using Unicode stringsVictor Stinner2011-03-071-2/+2
| | | | | | | | | | | | | | - is_builtin(), init_builtin(), load_builtin() and other builtin related functions use Unicode strings, instead of byte strings - Rename _PyImport_FixupExtensionUnicode() to _PyImport_FixupExtensionObject() - Rename _PyImport_FindExtensionUnicode() to _PyImport_FindExtensionObject()
* | Issue #3080: Add PyImport_ImportFrozenModuleObject()Victor Stinner2011-03-201-0/+3
| | | | | | | | | | find_frozen(), get_frozen_object(), is_frozen_package() and other functions related to frozen modules use Unicode strings instead of byte strings.
* | #11565: Merge with 3.2.Ezio Melotti2011-03-162-3/+3
|\ \ | |/
| * #11565: Merge with 3.1.Ezio Melotti2011-03-162-3/+3
| |\
| | * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-162-3/+3
| | |
* | | kill PY_PATCHLEVEL_REVISIONBenjamin Peterson2011-03-151-4/+0
| | |
* | | merge 3.2Benjamin Peterson2011-03-151-2/+3
|\ \ \ | |/ /
| * | merge 3.1Benjamin Peterson2011-03-151-2/+3
| |\ \ | | |/
| | * make this subversion artifact emptyBenjamin Peterson2011-03-151-2/+3
| | |
* | | Issue #11495: OSF support is eliminated. It was deprecated in Python 3.2Jesus Cea2011-03-141-6/+0
| | |
* | | Remove sys.subversion and svn build identification leftovers.Georg Brandl2011-03-061-3/+0
| | |
* | | Merge build identification to default branch.Georg Brandl2011-03-061-0/+2
|\ \ \ | |/ /
| * | Merge build identification to 3.2 branch.Georg Brandl2011-03-061-0/+2
| |\ \ | | |/