- 10 Feb, 2008 8 commits
-
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Mark Dickinson authored
-
Eric Smith authored
-
Mark Dickinson authored
of subclasses of Rational. (See discussion in issue #1682.)
-
Nick Coghlan authored
-
Raymond Hettinger authored
-
Eric Smith authored
_PyLong_Format. In longobject.c, changed long_format to _PyLong_Format. In intobject.c, changed uses of PyOS_snprintf to _PyInt_Format instead. _PyLong_Format is similar to py3k's routine of the same name, except it has 2 additional parameters: addL and newstyle. addL was existing in long_format, and controls adding the trailing "L". This is unneeded in py3k. newstyle is used to control whether octal prepends "0" (the pre-2.6 style), or "0o" (the 3.0 sytle). PyNumber_ToBase is needed for PEP 3127 (Integer Literal Support and Syntax) and PEP 3101 (Advanced String Formatting). This changeset does not need merging into py3k.
-
- 09 Feb, 2008 11 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Christian Heimes authored
Added Py_BUILD_CORE_MODULES macro to set WINVER and NTDDI_VERSION to Windows 2000 for core modules, too Added -d option to build.bat (same as -c Debug) and fixed warning about /build option Updated Windows related readme.txt files
-
Nick Coghlan authored
Issue 2021: Allow NamedTemporaryFile and SpooledTemporaryFile to be used as context managers. (The NamedTemporaryFile fix should be considered for backporting to 2.5)
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 08 Feb, 2008 9 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
The preceding test guarantees that 0 <= i < len.
-
Hye-Shik Chang authored
-
Jeffrey Yasskin authored
-
Amaury Forgeot d'Arc authored
if default_factory is set to a bound method. Will backport.
-
Christian Heimes authored
-
Christian Heimes authored
-
- 07 Feb, 2008 12 commits
-
-
Brett Cannon authored
Error found through LLVM post-2.1 svn.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Walter Dörwald authored
-
Walter Dörwald authored
Fixes second part of #2018.
-
Walter Dörwald authored
TextCalendar.formatyear() for custom instances won't be influenced by calls to the module global setfirstweekday() function. Fixes #2018.
-
Facundo Batista authored
to GET, so it loses its payload. So, it also must lose the headers related to the payload (if it has no content any more, it shouldn't indicate content length and type).
-
Christian Heimes authored
Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet.
-
Facundo Batista authored
Giampaolo Rodola.
-
Andrew M. Kuchling authored
-
Brett Cannon authored
-
Brett Cannon authored
(mistmatch found by clang).
-