- 12 Oct, 2006 9 commits
-
-
Georg Brandl authored
about the case of filenames.
-
Georg Brandl authored
(bug #1556261).
-
Georg Brandl authored
embedded in the string to convert.
-
Georg Brandl authored
-
Georg Brandl authored
arguments with the system default encoding just like the write() method does, instead of converting it to a raw buffer.
-
Georg Brandl authored
in inspect.findsource().
-
Georg Brandl authored
-
Georg Brandl authored
is started with that option.
-
Georg Brandl authored
-
- 10 Oct, 2006 1 commit
-
-
Ronald Oussoren authored
-
- 09 Oct, 2006 5 commits
-
-
Martin v. Löwis authored
-
Barry Warsaw authored
-
Georg Brandl authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 08 Oct, 2006 7 commits
-
-
Ronald Oussoren authored
shell profile patching post-install script.
-
Ronald Oussoren authored
installed to build extensions. This patch makes distutils emit a warning when the compiler should use an SDK but that SDK is not installed, hopefully reducing some confusion.
-
Ronald Oussoren authored
universal build of python on OSX 10.3 to ensure that those flags can be used to compile code (the universal build uses compiler flags that aren't supported on 10.3). This patches gives the same treatment to CFLAGS, PY_CFLAGS and BLDSHARED.
-
Ronald Oussoren authored
-
Ronald Oussoren authored
/Developer/Documentation/Python, better for users that install multiple versions of python.
-
Hye-Shik Chang authored
when encoding non-BMP unicode characters. (Submitted by Ray Chason)
-
Georg Brandl authored
-
- 07 Oct, 2006 1 commit
-
-
Skip Montanaro authored
Fixes 1572471. Make a similar change for the excel class and clean up references to the Dialects and Formatting Parameters section in a few places.
-
- 06 Oct, 2006 6 commits
-
-
Andrew M. Kuchling authored
-
Armin Rigo authored
any hue value and do the modulo itself, except it doesn't quite do it in all cases. At least, the "cannot get here" comment was wrong.
-
Andrew M. Kuchling authored
-
Georg Brandl authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
- remove Sleepycat name now that they have been bought
-
- 05 Oct, 2006 1 commit
-
-
Brett Cannon authored
Also remove warning about re-initialization as possibly raising an execption as both call _PyImport_FindExtension() which pulls any module that was already imported from the Python process' extension cache and just copies the __dict__ into the module stored in sys.modules.
-
- 04 Oct, 2006 8 commits
-
-
Martin v. Löwis authored
-
Andrew M. Kuchling authored
add 'if (PyErr_Occurred())' checks to various places so that NULL is returned properly. 2.4 backport candidate.
-
Armin Rigo authored
* unified the way intobject, longobject and mystrtoul handle values around -sys.maxint-1. * in general, trying to entierely avoid overflows in any computation involving signed ints or longs is extremely involved. Fixed a few simple cases where a compiler might be too clever (but that's all guesswork). * more overflow checks against bad data in marshal.c. * 2.5 specific: fixed a number of places that were still confusing int and Py_ssize_t. Some of them could potentially have caused "real-world" breakage. * list.pop(x): fixing overflow issues on x was messy. I just reverted to PyArg_ParseTuple("n"), which does the right thing. (An obscure test was trying to give a Decimal to list.pop()... doesn't make sense any more IMHO) * trying to write a few tests...
-
Armin Rigo authored
(unsigned long vs. unsigned int).
-
Martin v. Löwis authored
-
Martin v. Löwis authored
on undefined behaviour of the C compiler anymore. Will backport to 2.5 and 2.4.
-
Jeremy Hylton authored
The compiler was checking that there was something on the fblock stack, but not that there was a loop on the stack. Fixed that and added a test for the specific syntax error. Bug fix candidate.
-
Barry Warsaw authored
test for parts > 3 when we use .split(..., 2).
-
- 03 Oct, 2006 2 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
-