| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #3080: document encoding used by import functions | Victor Stinner | 2011-02-22 | 3 | -16/+51 |
|
|
* | Issue #8914: fix various warnings from the Clang static analyzer v254. | Brett Cannon | 2011-02-22 | 2 | -3/+11 |
|
|
* | Bump trunk to 3.3 alpha 0. | Georg Brandl | 2011-02-20 | 1 | -3/+3 |
|
|
* | Version bump to 3.2 final. | Georg Brandl | 2011-02-20 | 1 | -3/+3 |
|
|
* | Post-release updates. | Georg Brandl | 2011-02-14 | 1 | -1/+1 |
|
|
* | Bump for 3.2rc3.v3.2rc3 | Georg Brandl | 2011-02-13 | 1 | -2/+2 |
|
|
* | Issue #11134: Add missing fields to typeslots.h. | Martin v. Löwis | 2011-02-11 | 1 | -0/+3 |
|
|
* | Issue #11135: Remove redundant doc field from PyType_Spec. | Martin v. Löwis | 2011-02-11 | 1 | -1/+0 |
|
|
* | Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check | Martin v. Löwis | 2011-02-05 | 1 | -0/+6 |
|
|
* | Post-release updates. | Georg Brandl | 2011-01-31 | 1 | -1/+1 |
|
|
* | Bump version.v3.2rc2 | Georg Brandl | 2011-01-30 | 1 | -2/+2 |
|
|
* | Post-release updates. | Georg Brandl | 2011-01-16 | 1 | -1/+1 |
|
|
* | Bump to 3.2rc1. | Georg Brandl | 2011-01-15 | 1 | -3/+3 |
|
|
* | Drop bf_getbuffer/bf_releasebuffer from stable ABI, | Martin v. Löwis | 2011-01-06 | 1 | -2/+4 |
|
|
* | Remove buffer API from stable ABI for now, see #10181. | Martin v. Löwis | 2011-01-06 | 3 | -1/+6 |
|
|
* | Issue #10333: Remove ancient GC API, which has been deprecated since | Antoine Pitrou | 2011-01-04 | 1 | -12/+0 |
|
|
* | post release bump | Gregory P. Smith | 2011-01-01 | 1 | -1/+1 |
|
|
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric... | Georg Brandl | 2010-12-28 | 1 | -0/+1 |
|
|
* | Issue #10780: Remove commas at the end of the argument list | Victor Stinner | 2010-12-28 | 1 | -2/+2 |
|
|
* | Issue #10780: PyErr_SetFromWindowsErrWithFilename() and | Victor Stinner | 2010-12-28 | 1 | -2/+2 |
|
|
* | Issue #10779: PyErr_WarnExplicit() decodes the filename from the filesystem | Victor Stinner | 2010-12-27 | 1 | -1/+1 |
|
|
* | Issue #9738: Ooops, fix typos in my previous commit (r87506) | Victor Stinner | 2010-12-27 | 2 | -2/+2 |
|
|
* | Issue #9738: Document encodings of AST, compiler, parser and PyRun functions | Victor Stinner | 2010-12-27 | 5 | -38/+91 |
|
|
* | Issue #9738: document encodings of unicode functions | Victor Stinner | 2010-12-27 | 1 | -5/+7 |
|
|
* | Issue #9738: Document encodings of error and warning functions | Victor Stinner | 2010-12-27 | 2 | -15/+62 |
|
|
* | Bump to 3.2b2. | Georg Brandl | 2010-12-19 | 1 | -2/+2 |
|
|
* | Issue #8844: Regular and recursive lock acquisitions can now be interrupted | Antoine Pitrou | 2010-12-15 | 1 | -4/+19 |
|
|
* | Take PyUnicode_TransformDecimalToASCII out of the limited API. | Georg Brandl | 2010-12-05 | 1 | -0/+2 |
|
|
* | Bump to 3.2b1. | Georg Brandl | 2010-12-04 | 1 | -3/+3 |
|
|
* | Expose CompileString, not CompileStringFlags under the | Martin v. Löwis | 2010-12-04 | 1 | -1/+1 |
|
|
* | Add an "optimize" parameter to compile() to control the optimization level, a... | Georg Brandl | 2010-12-04 | 2 | -5/+7 |
|
|
* | Issue #10557: Fixed error messages from float() and other numeric | Alexander Belopolsky | 2010-12-04 | 1 | -0/+11 |
|
|
* | Merge branches/pep-0384. | Martin v. Löwis | 2010-12-03 | 59 | -29/+463 |
|
|
* | Include structseq.h in Python.h, and remove now-redundant includes in individ... | Georg Brandl | 2010-11-30 | 1 | -0/+1 |
|
|
* | #10439: document PyCodec C APIs. | Georg Brandl | 2010-11-20 | 1 | -4/+4 |
|
|
* | Issue #10325: Fix two issues in the fallback definitions of PY_LLONG_MAX and | Mark Dickinson | 2010-11-20 | 1 | -8/+13 |
|
|
* | Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly | David Malcolm | 2010-11-17 | 1 | -1/+6 |
|
|
* | Post-release bumps. | Georg Brandl | 2010-11-16 | 1 | -1/+1 |
|
|
* | Issue #10413: Updated comments to reflect code changes | Alexander Belopolsky | 2010-11-16 | 1 | -18/+13 |
|
|
* | Bump to 3.2a4. | Georg Brandl | 2010-11-13 | 1 | -2/+2 |
|
|
* | PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails | Victor Stinner | 2010-11-08 | 1 | -1/+2 |
|
|
* | Issue #10288: The deprecated family of "char"-handling macros | David Malcolm | 2010-11-05 | 1 | -35/+0 |
|
|
* | Issue #10293: Remove obsolete field in the PyMemoryView structure, | Antoine Pitrou | 2010-11-04 | 2 | -2/+0 |
|
|
* | Issue #5437: A preallocated MemoryError instance should not hold traceback | Antoine Pitrou | 2010-10-28 | 1 | -1/+0 |
|
|
* | Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name for | Victor Stinner | 2010-10-24 | 1 | -2/+2 |
|
|
* | Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ... | Georg Brandl | 2010-10-24 | 1 | -0/+1 |
|
|
* | follow up to #9778: define and use an unsigned hash type | Benjamin Peterson | 2010-10-23 | 1 | -1/+3 |
|
|
* | Issue #10089: Add support for arbitrary -X options on the command-line. | Antoine Pitrou | 2010-10-21 | 1 | -0/+3 |
|
|
* | #4499: silence compiler warning on AIX. | R. David Murray | 2010-10-18 | 1 | -0/+2 |
|
|
* | make hashes always the size of pointers; introduce Py_hash_t #9778 | Benjamin Peterson | 2010-10-17 | 8 | -27/+24 |
|
|