- 26 Jul, 2002 1 commit
-
-
Kurt B. Kaiser authored
Idle client and localhost origin of connection is verified by client. M PyShell.py M rpc.py M run.py
-
- 25 Jul, 2002 12 commits
-
-
Fred Drake authored
readers are not given the wrong impression that they should be using those on a regualar basis. This closes SF bug #585598.
-
Fred Drake authored
-
Fred Drake authored
-
Jeremy Hylton authored
-
Jeremy Hylton authored
-
Fred Drake authored
Makefile. - Update the Python version number so we're using the library built from the current working sources.
-
Skip Montanaro authored
-
Skip Montanaro authored
* globaltrace_lt - handle case where inspect.getmodulename doesn't return anything useful * localtrace_trace - handle case where inspect.getframeinfo doesn't return any context info I think both of the last two are caused by exec'd or eval'd code
-
Jeremy Hylton authored
Fixes SF bug #575773. Bug fix candidate.
-
Jeremy Hylton authored
Fixes SF bug #568322. The code should raise an OverflowError if the long is > 32 bits, even on platforms where sizeof(long) > 4.
-
Jeremy Hylton authored
-
Skip Montanaro authored
is slow things down unnecessarily and make tracing much more verbose. Something like def f(n): return [i for i in range(n) if i%2] should have at most two SET_LINENO instructions, not four. When tracing, the current line number should be printed once, not 2*n+1 times.
-
- 24 Jul, 2002 3 commits
-
-
Guido van Rossum authored
-
Jeremy Hylton authored
-
Guido van Rossum authored
defined and the default was "pre" instead of "sre". Give up on 1.5.2 compatibility, hardcode the sre solution. However, this XXX comment still applies, AFAIK: # XXX This code depends on internals of the regular expression # engine! There's no standard API to do a substitution when you # have already found the match. One should be added.
-
- 23 Jul, 2002 12 commits
-
-
Barry Warsaw authored
-
Tim Peters authored
package, and the loss of the test/data directory.
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
-
Mark Hammond authored
command line for Windows builds. This should allow MSVC to import and build the Python MSVC6 project files without error.
-
Barry Warsaw authored
character set, which we'll convert to a Charset instance. Sigh.
-
Barry Warsaw authored
will return as the charset if implicit us-ascii is used.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Neal Norwitz authored
Return the selected item, if there is any.
-
- 22 Jul, 2002 10 commits
-
-
Andrew M. Kuchling authored
Mention portable strptime() Move C-level sections farther down in the file
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Mark Hammond authored
-
Mark Hammond authored
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Mark Hammond authored
[ 583894 ] doc DL_IMPORT/DL_EXPORT changes
-
Jack Jansen authored
Fixed potential refcount problems with interned strings, adapted comments, added a bit more trace output if verbose > 1.
-
Jack Jansen authored
-
- 21 Jul, 2002 2 commits
-
-
Tim Peters authored
array. Our samplesort special-cases the snot out of this, running about 12x faster than *sort. The experimental mergesort runs it about 8x faster than *sort without special-casing, but should really do better than that (when merging runs of different lengths, right now it only does something clever about finding where the second run begins in the first and where the first run ends in the second, and that's more of a temp-memory optimization).
-
Tim Peters authored
from test.test_support import TestSkipped, run_unittest to from test_support import TestSkipped, run_unittest Otherwise, if the Japanese codecs aren't installed, regrtest doesn't believe the TestSkipped exception raised by this test matches the except (ImportError, test_support.TestSkipped), msg: it's looking for, and reports the skip as a crash failure instead of as a skipped test. I suppose this will make it harder to run this test outside of regrtest, but under the assumption only Barry does that, better to make it skip cleanly for everyone else.
-