| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Re-implement the 'warnings' module in C. This allows for usage of the | Brett Cannon | 2008-04-12 | 5 | -10/+22 |
|
|
* | Make file objects as thread safe as the underlying libc FILE* implementation. | Gregory P. Smith | 2008-04-06 | 1 | -0/+4 |
|
|
* | Post tag version tweak | Barry Warsaw | 2008-04-03 | 1 | -1/+1 |
|
|
* | Updating for 2.6a2v2.6a2 | Barry Warsaw | 2008-04-03 | 1 | -2/+4 |
|
|
* | Patch #2511: Give the "excepthandler" AST item proper attributes by making it... | Georg Brandl | 2008-03-30 | 1 | -5/+12 |
|
|
* | Properly check for consistency with the third argument of | Georg Brandl | 2008-03-29 | 1 | -1/+1 |
|
|
* | NIL => NULL | Benjamin Peterson | 2008-03-28 | 1 | -1/+1 |
|
|
* | Patch #1810 by Thomas Lee, reviewed by myself: | Georg Brandl | 2008-03-28 | 1 | -0/+2 |
|
|
* | Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. | Neal Norwitz | 2008-03-28 | 2 | -8/+8 |
|
|
* | Fix warnings about using char as an array subscript. This is not portable | Neal Norwitz | 2008-03-27 | 1 | -7/+7 |
|
|
* | Patch #2477: Added from __future__ import unicode_literals | Christian Heimes | 2008-03-26 | 4 | -1/+12 |
|
|
* | Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,... | Christian Heimes | 2008-03-26 | 6 | -0/+142 |
|
|
* | Backport of the print function, using a __future__ import. | Eric Smith | 2008-03-18 | 4 | -2/+9 |
|
|
* | Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje... | Travis E. Oliphant | 2008-03-18 | 2 | -3/+5 |
|
|
* | Add necessary headers to back-port new buffer protocol to Python 2.6 | Travis E. Oliphant | 2008-03-17 | 3 | -0/+173 |
|
|
* | Set things up for 2.6a2. | Barry Warsaw | 2008-03-01 | 1 | -1/+1 |
|
|
* | Bump to version 2.6a1 | Barry Warsaw | 2008-03-01 | 1 | -2/+2 |
|
|
* | Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT, | Jeffrey Yasskin | 2008-02-28 | 1 | -0/+3 |
|
|
* | Thomas Herve explained to me that PyCrypto depends on the constants. I'm addi... | Christian Heimes | 2008-02-25 | 1 | -1/+6 |
|
|
* | Patch #1759: Backport of PEP 3129 class decorators | Christian Heimes | 2008-02-23 | 2 | -84/+87 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 3 | -0/+31 |
|
|
* | Implemented Martin's suggestion to clear the free lists during the garbage co... | Christian Heimes | 2008-02-14 | 5 | -0/+11 |
|
|
* | Forgot to modify header file in r60707. | Eric Smith | 2008-02-10 | 1 | -0/+9 |
|
|
* | Added PyNumber_ToBase and supporting routines _PyInt_Format and | Eric Smith | 2008-02-10 | 2 | -0/+13 |
|
|
* | Deallocate content of the dict free list on interpreter shutdown | Christian Heimes | 2008-02-08 | 1 | -0/+1 |
|
|
* | Patch #1953 | Christian Heimes | 2008-02-04 | 2 | -0/+5 |
|
|
* | Make int() and long() fall back to __trunc__(). See issue 2002. | Jeffrey Yasskin | 2008-02-04 | 1 | -0/+13 |
|
|
* | Nasty typo in setobject.h | Amaury Forgeot d'Arc | 2008-02-03 | 1 | -1/+1 |
|
|
* | Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_S... | Amaury Forgeot d'Arc | 2008-02-03 | 1 | -1/+5 |
|
|
* | Fixed bug #1983: Return from fork() is pid_t, not int | Christian Heimes | 2008-01-31 | 1 | -1/+5 |
|
|
* | Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec... | Christian Heimes | 2008-01-30 | 1 | -1/+8 |
|
|
* | Factor-out common code with a new macro | Raymond Hettinger | 2008-01-28 | 1 | -0/+2 |
|
|
* | Added clear cache methods to clear the internal type lookup cache for ref lea... | Christian Heimes | 2008-01-27 | 1 | -0/+1 |
|
|
* | Add stdarg include for va_list to get this to compile on cygwin | Neal Norwitz | 2008-01-27 | 1 | -0/+2 |
|
|
* | #1473257: add generator.gi_code attribute that refers to | Georg Brandl | 2008-01-26 | 1 | -0/+3 |
|
|
* | Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From... | Christian Heimes | 2008-01-25 | 3 | -7/+33 |
|
|
* | Don't repeat yourself | Christian Heimes | 2008-01-22 | 1 | -1/+2 |
|
|
* | Fixed a missing (X) in define | Christian Heimes | 2008-01-22 | 1 | -1/+1 |
|
|
* | Patch #1720595: add T_BOOL to the range of structmember types. | Georg Brandl | 2008-01-21 | 1 | -0/+3 |
|
|
* | Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite ... | Christian Heimes | 2008-01-20 | 1 | -2/+2 |
|
|
* | Re-apply patch #1700288 (first applied in r59931, rolled back in r59940) | Amaury Forgeot d'Arc | 2008-01-14 | 1 | -0/+8 |
|
|
* | Back out r59931 - test_ctypes fails with it. | Georg Brandl | 2008-01-13 | 1 | -8/+0 |
|
|
* | Patch #1700288: Method cache optimization, by Armin Rigo, ported to | Georg Brandl | 2008-01-12 | 1 | -0/+8 |
|
|
* | Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO... | Georg Brandl | 2008-01-07 | 1 | -0/+1 |
|
|
* | Modified PyImport_Import and PyImport_ImportModule to always use absolute imp... | Christian Heimes | 2008-01-03 | 2 | -5/+2 |
|
|
* | Some build bots don't compile mathmodule. There is an issue with the long def... | Christian Heimes | 2008-01-03 | 1 | -2/+9 |
|
|
* | Patch #1583 by Adam Olsen. | Guido van Rossum | 2007-12-19 | 1 | -0/+3 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 32 | -74/+79 |
|
|
* | Applied patch #1635: Float patch for inf and nan on Windows (and other platfo... | Christian Heimes | 2007-12-18 | 3 | -0/+56 |
|
|
* | Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary. | Raymond Hettinger | 2007-12-18 | 1 | -0/+1 |
|
|