summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Collapse)AuthorAgeFilesLines
* r88840: Prepare for 2.5.6.v2.5.6Martin v. Löwis2011-05-281-3/+3
|
* r88824: Prepare for 2.5.6c1.v2.5.6c1Martin v. Löwis2011-05-281-3/+3
|
* Post 2.5.5.Martin v. Löwis2010-01-311-3/+3
|
* Prepare for 2.5.5.v2.5.5Martin v. Löwis2010-01-311-3/+3
|
* Prepare for 2.5.5c2.v2.5.5c2Martin v. Löwis2010-01-241-2/+2
|
* Prepare for 2.5.5c1.v2.5.5c1Martin v. Löwis2010-01-141-4/+4
|
* Prepare for 2.5.4.v2.5.4Martin v. Löwis2008-12-231-2/+2
|
* Post 2.5.3.Martin v. Löwis2008-12-201-3/+3
|
* Prepare for 2.5.3.v2.5.3Martin v. Löwis2008-12-191-3/+3
|
* Prepare for 2.5.3c1.v2.5.3c1Martin v. Löwis2008-12-131-3/+3
|
* Backport of r64212Martin v. Löwis2008-12-131-0/+3
| | | | Issue #1683: prevent forking from interfering in threading storage.
* Backport code from r65182:Neal Norwitz2008-07-281-11/+22
| | | | | | | | | Issue #2620: Overflow checking when allocating or reallocating memory was not always being done properly in some python types and extension modules. PyMem_MALLOC, PyMem_REALLOC, PyMem_NEW and PyMem_RESIZE have all been updated to perform better checks and places in the code that would previously leak memory on the error path when such an allocation failed have been fixed.
* Bump version for 2.5.3a0.Martin v. Löwis2008-02-231-3/+3
|
* Prepare for 2.5.2.Martin v. Löwis2008-02-211-3/+3
|
* Preparing for 2.5.2c1.Martin v. Löwis2008-02-141-3/+3
|
* Added checks for integer overflows, contributed by Google. Some areMartin v. Löwis2008-02-142-4/+19
| | | | | only available if asserts are left in the code, in cases where they can't be triggered from Python code.
* when talking about an imminent 2.5.2c1, the build should identify itselfFred Drake2007-11-091-3/+3
| | | | | as being some form of 2.5.2 (this is admittedly a bit conservative); we can make this 2.5.2c1 when making the release
* Fix #1752132: wrong comment in opcode description.Georg Brandl2007-07-111-1/+1
| | | | (backport from rev. 56280)
* Provide PY_LLONG_MAX on all systems having long long.Martin v. Löwis2007-06-131-4/+10
|
* Backport r55845: Provide LLONG_MAX for S390.Martin v. Löwis2007-06-091-0/+7
|
* Patch #1733960: Allow T_LONGLONG to accept ints.Martin v. Löwis2007-06-091-0/+3
|
* Merge change 54982 from the trunk. This fixes the test_subprocess test in ↵Kristján Valur Jónsson2007-05-071-0/+5
| | | | the testsuite for VisualStudio2005 builds, by "sanitizing" the "mode" that is used in the posixmodule's fdopen(). In particular the non-standard "U" mode character is removed.
* 2.5.1 finalv2.5.1Anthony Baxter2007-04-181-3/+3
|
* preparing for 2.5.1c1Anthony Baxter2007-04-051-4/+4
|
* Extend work on rev 52962 and 53830 eliminating redundant PyObject_Hash() ↵Raymond Hettinger2007-03-201-1/+2
| | | | calls and fixing set/dict interoperability.
* Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ↵Collin Winter2007-03-121-0/+1
| | | | | | Fixed by patch #922167. Backported from r54291.
* Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().Raymond Hettinger2007-02-191-0/+3
|
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-191-87/+145
|
* Patch #1580872: Remove duplicate declaration of PyCallable_Check.Martin v. Löwis2006-10-221-1/+2
|
* Guard uintptr_t test with HAVE_STDINT_H, test forMartin v. Löwis2006-10-021-0/+4
| | | | stdint.h.
* Backport rev. 51971:Georg Brandl2006-09-251-1/+1
| | | | | | | | | | Fix %zd string formatting on Mac OS X so it prints negative numbers. In addition to testing positive numbers, verify negative numbers work in configure. In order to avoid compiler warnings on OS X 10.4, also change the order of the check for the format character to use (PY_FORMAT_SIZE_T) in the sprintf format for Py_ssize_t. This patch changes PY_FORMAT_SIZE_T from "" to "l" if it wasn't defined at configure time. Need to verify the buildbot results.
* Preparing for 2.5 final.v2.5Anthony Baxter2006-09-181-3/+3
| | | | | | (damn, it's nice to see the line #define PY_VERSION "2.5" in patchlevel.h)
* preparing for 2.5c2Anthony Baxter2006-09-111-2/+2
|
* SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macroNeal Norwitz2006-08-191-1/+1
|
* preparing for 2.5c1 - no, really this timeAnthony Baxter2006-08-161-1/+1
|
* preparing for 2.5c1Anthony Baxter2006-08-161-2/+2
|
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-142-0/+25
| | | | | | | | | | Replace UnicodeDecodeErrors raised during == and != compares of Unicode and other objects with a new UnicodeWarning. All other comparisons continue to raise exceptions. Exceptions other than UnicodeDecodeErrors are also left untouched.
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-122-4/+18
| | | | | | | I modified this patch some by fixing style, some error checking, and adding XXX comments. This patch requires review and some changes are to be expected. I'm checking in now to get the greatest possible review and establish a baseline for moving forward. I don't want this to hold up release if possible.
* pre-release machinationsAnthony Baxter2006-08-021-2/+2
|
* _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.Neal Norwitz2006-08-021-1/+1
|
* Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().Neal Norwitz2006-07-301-1/+5
| | | | | | This provides the proper warning for struct.pack(). PyErr_Warn() is now deprecated in favor of PyErr_WarnEx(). As mentioned by Tim Peters on python-dev.
* After approval from Anthony, merge the tim-current_framesTim Peters2006-07-101-0/+5
| | | | | | branch into the trunk. This adds a new sys._current_frames() function, which returns a dict mapping thread id to topmost thread stack frame.
* preparing for 2.5b2Anthony Baxter2006-07-101-2/+2
|
* Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338).Trent Mick2006-06-191-2/+2
|
* Preparing for 2.5b1.Anthony Baxter2006-06-191-3/+3
|
* Use Py_ssize_tNeal Norwitz2006-06-191-3/+3
|
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-0/+7
|
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+3
| | | | | | | | | | Heavily revised, comprising revisions: 46640 - original trunk revision (backed out in r46655) 46647 - markup fix (backed out in r46655) 46692:46918 merged from branch aimacintyre-sf1454481 branch tested on buildbots (Windows buildbots had problems not related to these changes).
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-2/+2
| | | | at the NeedForSpeed sprint.
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-102-5/+5
| | | | | | - update header checks, using autoconf - provide dummies for getenv, environ, and GetVersion - adjust MSC_VER check in socketmodule.c