COMMITS
/ Python/bltinmodule.c March 2, 2009
B
ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626
Benjamin Peterson committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
February 1, 2009
M
Issue #1717: remove the cmp builtin function, the C-API functions
Mark Dickinson committed
January 28, 2009
M
Issue #4707: round(x, n) now returns an integer when x is an integer.
Mark Dickinson committed
January 12, 2009
A
Merged revisions 68560 via svnmerge from
Amaury Forgeot d'Arc committed
January 6, 2009
R
Mini-optimization: use pack/unpack functions for argument tuples.
Raymond Hettinger committed
January 4, 2009
B
#4826 exec() doesn't take a file object anymore
Benjamin Peterson committed
December 4, 2008
G
#4513: remove traces of zip() docstring from when it was izip().
Georg Brandl committed
October 30, 2008
C
Issue 3723: Fixed initialization of subinterpreters
Christian Heimes committed
October 3, 2008
M
Issue #3187: Add sys.setfilesystemencoding.
Martin v. Löwis committed
September 21, 2008
A
#1688: On Windows, the input() prompt was not correctly displayed if it
Amaury Forgeot d'Arc committed
August 28, 2008
G
#3706: fix error message for wrong exec() argument type. R=Guido.
Georg Brandl committed
August 7, 2008
M
Rename PyUnicode_AsString -> _PyUnicode_AsString and
Marc-André Lemburg committed
August 1, 2008
A
Merged revisions 65339-65340,65342 via svnmerge from
Amaury Forgeot d'Arc committed
July 5, 2008
M
Docstring typo
Mark Dickinson committed
July 1, 2008
G
#3191: fix round() docs and docstring.
Georg Brandl committed
June 11, 2008
G
#2630: Implement PEP 3138.
Georg Brandl committed
M
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis committed
June 10, 2008
June 4, 2008
G
Revert r63934 -- it was mixing two patches.
Georg Brandl committed
G
Remove meaning of -ttt, but still accept -t option on cmdline for compatibility.
Georg Brandl committed
May 26, 2008
C
Renamed PyString to PyBytes
Christian Heimes committed
C
Renamed PyBytes to PyByteArray
Christian Heimes committed
May 16, 2008
G
April 30, 2008
G
Fix nits in builtin next().
Georg Brandl committed
March 31, 2008
N
Merged revisions 62039-62042 via svnmerge from
Neal Norwitz committed
March 30, 2008
M
Merged revisions 62004 via svnmerge from
Martin v. Löwis committed
March 13, 2008
R
Move itertools izip() code to builtins as zip(). Complete the renaming.
Raymond Hettinger committed
R
Issues 2186 and 2187. Move map() from itertools to builtins.
Raymond Hettinger committed
R
Issue 2186 and 2187. Move filter from itertools to builtins.
Raymond Hettinger committed
February 17, 2008
E
Fixes for shared 2.6 code that implements PEP 3101, advanced string
Eric Smith committed
February 1, 2008
G
Make print docstring consistent with its docs.
Georg Brandl committed
C
Merged revisions 60475-60479,60481-60488 via svnmerge from
Christian Heimes committed
January 30, 2008
R
Issue #1771: Remove cmp parameter from list.sort() and builtin.sorted().
Raymond Hettinger committed
January 28, 2008
C
Merged revisions 60379-60382 via svnmerge from
Christian Heimes committed
January 24, 2008
C
Merged revisions 60210-60233 via svnmerge from
Christian Heimes committed
January 22, 2008
R
Replace map(None, *iterables) with zip(*iterables).
Raymond Hettinger committed
January 3, 2008
C
More PyImport_ImportModule -> PyImport_ImportModuleNoBlock
Christian Heimes committed
December 24, 2007
C
Merged revisions 59565-59594 via svnmerge from
Christian Heimes committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 11, 2007
C
Fixed #1593 spacing of the builtin_format function is inconsistent. Thanks to Joseph for the fix
Christian Heimes committed
December 4, 2007
M
Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.
Martin v. Löwis committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
G
#1535: rename __builtin__ module to builtins.
Georg Brandl committed
November 30, 2007
C
Partial fix for bug #1306
Christian Heimes committed
November 25, 2007
C
Fixed bug in input() which broke pdb
Christian Heimes committed
November 21, 2007
G
Rename buffer -> bytearray.
Guido van Rossum committed
November 15, 2007
C
Added some additional checks for sys.std?? is None, see #1440
Christian Heimes committed
November 13, 2007
C
Another #1415 fix for Windows GUI apps
Christian Heimes committed