- 27 Apr, 2003 4 commits
-
-
Gustavo Niemeyer authored
within repeats of alternatives. The only change to the original patch was to convert the tests to the new test_re.py file. This patch fixes cases like: >>> re.match('((a)|b)*', 'abc').groups() ('b', '') Which is wrong (it's impossible to match the empty string), and incompatible with other regex systems, like the following examples show: % perl -e '"abc" =~ /^((a)|b)*/; print "$1 $2\n";' b a % echo "abc" | sed -r -e "s/^((a)|b)*/\1 \2|/" b a|c
-
Raymond Hettinger authored
-
Gustavo Niemeyer authored
recursion limit for certain setups of FreeBSD and OS/2.
-
Gustavo Niemeyer authored
[#727759] get bzip2 to build on Solaris 8 (old bzip library)
-
- 26 Apr, 2003 7 commits
-
-
Tim Peters authored
Bugfix candidate.
-
Tim Peters authored
-
Tim Peters authored
"import test.autotest", temp_imp failed because the import lock was still held at the test's end (the test assumed it wouldn't be), and then a RuntimeError got raised at the end of the entire suite run because test_imp cleared the import lock as a side effect of trying to test that the import lock wasn't held (but a legitimate import is in progress, so the lock should be held, and the import machinery complained when it found that the lock was unexpectedly cleareed). Also removed the unittest scaffolding. It didn't buy anything here, and the test was raising regrtest's TestFailed instead of using the unittest failure-reporting mechanisms.
-
Skip Montanaro authored
711019.
-
Tim Peters authored
-
Fred Drake authored
-
Guido van Rossum authored
-
- 25 Apr, 2003 29 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
original. New files are written using the eol convention of the platform, given by os.linesep. All files are read and written in binary mode.
-
Fred Drake authored
-
Kurt B. Kaiser authored
NEWS.txt idlever.py
-
Fred Drake authored
This is a modified form of SF patch #718027 (mostly markup changes).
-
Kurt B. Kaiser authored
Modified Files: NEWS.txt CREDITS.txt INSTALL.txt setup.cfg
-
Fred Drake authored
- lots of general cleanup
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Skip Montanaro authored
in the last revison
-
Skip Montanaro authored
-
Fred Drake authored
(SF patch #545480).
-
Guido van Rossum authored
literally from inet_pton.
-
Skip Montanaro authored
to migrate.
-
Skip Montanaro authored
-
Fred Drake authored
os.walk() generator.
-
Guido van Rossum authored
This makes the test pass on Windows again (and on other platforms that don't have these).
-
Guido van Rossum authored
mode. XXX I'm not convinced that this is the right solution -- arguably, on Windows, the _fileobject class should honor the mode argument and do newline translation. But it's never done that so I think there's no urgent need to fix this today.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Fred Drake authored
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Skip Montanaro authored
-
Fred Drake authored
due to using a single module-level namespace where multiple namespaces were used before. There *really* need to be tests for the sniffer stuff. This could have been avoided. Skip, please review, and add sniffer tests!
-
Guido van Rossum authored
-
Skip Montanaro authored
-
Walter Dörwald authored
-
Brett Cannon authored
should go in test_urllibnet.py . Still need to write tests for _urlopener usage and urlretrieve.
-