- 13 Sep, 2002 5 commits
-
-
Andrew M. Kuchling authored
-
Guido van Rossum authored
the usability of the output of the Xenofarm builds.
-
Neal Norwitz authored
-
Guido van Rossum authored
More whitespace cleanup.
-
Neal Norwitz authored
When --enable-unicode=ucs4, need to cast Py_UNICODE to a char
-
- 12 Sep, 2002 22 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
I modified the patch to make it a non-fatal error if IDLE isn't built.
-
Jack Jansen authored
-
Kurt B. Kaiser authored
Modified Files: INSTALL.txt
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Jack Jansen authored
-
-
Jack Jansen authored
-
Fred Drake authored
accomodate the fact that they are more general now that they are for the os.path module and not just posixpath. This and the previous patch should be combined and applied to the 2.2-maint branch.
-
Skip Montanaro authored
-
Fred Drake authored
the test should be skipped if that's the case.
-
Fred Drake authored
The original expected value is actually wrong, but we'll pick up the real fix and test when we refresh the xml package from PyXML before 2.3a1.
-
Guido van Rossum authored
Two of these were real bugs.
-
Guido van Rossum authored
This module raises "SystemError: module dl requires sizeof(int) == sizeof(long) == sizeof(char*)" when compiled on 64-bit platforms.
-
Walter Dörwald authored
The file itself still mentions Python 1.5.1, so it might need further updates.
-
Fred Drake authored
Note that there is no str.joinfields(), use str.join() instead.
-
Michael W. Hudson authored
-
Guido van Rossum authored
attribute to the (stringized) message number (if this attribute is settable). This is useful so users of this class can report the correct message number (e.g. when classifying spam). Also added a blank line before the first method of each class.
-
Guido van Rossum authored
routines. I got some errors "dictionary changed size during iteration" when running ZEO tests on machine while doing heavy forground work in another window, and thinking about it, I believe that it should be okay if readable() or writable() modifies the map. I also finally made all the spacing conform to the Python style guide: no space between a function/method name and the following left parenthesis (fixed lots of occurrences), spaces around assignment operators (fixed a few, always of the form "map=..."), and a blank line between the class statement and the first method definition (a few).
-
Barry Warsaw authored
-
- 11 Sep, 2002 13 commits
-
-
Jack Jansen authored
-
Jack Jansen authored
-
Fred Drake authored
the work of the XML-SIG in the main body of the text. Modify the markup in a few places to avoid wrapping lines in bad places, and just general cleanliness.
-
Guido van Rossum authored
-
http://www.python.org/sf/572113Walter Dörwald authored
(with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
-
Guido van Rossum authored
-
Guido van Rossum authored
the range of ints. The old code would pass random truncated bits to sq_repeat() on a 64-bit machine. Backport candidate.
-
Guido van Rossum authored
for their contributions to the snake farm.
-
Guido van Rossum authored
Because ob_size is a 32-bit int but sys.maxint is LONG_MAX which is a 64-bit value, there's no way to make this test succeed on a 64-bit platform. So just skip it when sys.maxint isn't 0x7fffffff. Backport candidate.
-
Guido van Rossum authored
iter(self.keys()).
-
Michael W. Hudson authored
-
Jeremy Hylton authored
Note that distutils.core.DEBUG still works if client code uses it, but the core code avoids circular references by using distutils.debug.
-
Jeremy Hylton authored
-