summaryrefslogtreecommitdiffstats
path: root/Lib/reconvert.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-192/+0
| | | | | | | | | | | | | | | | | | | | number of tests, all because of the codecs/_multibytecodecs issue described here (it's not a Py3K issue, just something Py3K discovers): http://mail.python.org/pipermail/python-dev/2006-April/064051.html Hye-Shik Chang promised to look for a fix, so no need to fix it here. The tests that are expected to break are: test_codecencodings_cn test_codecencodings_hk test_codecencodings_jp test_codecencodings_kr test_codecencodings_tw test_codecs test_multibytecodec This merge fixes an actual test failure (test_weakref) in this branch, though, so I believe merging is the right thing to do anyway.
* allow triple-quoted string output from reconvert.quote()Skip Montanaro2005-01-161-1/+1
|
* Remove specific Python version from #!Andrew M. Kuchling2004-04-061-1/+1
|
* Suppress the warning about regex here.Guido van Rossum2001-09-041-0/+4
|
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+2
| | | | | | also modified check_all function to suppress all warnings since they aren't relevant to what this test is doing (allows quiet checking of regsub, for instance)
* Whitespace normalization.Tim Peters2001-01-151-1/+1
|
* Add 'r' to docstrings to avoid expanded backslash escapes. (Ka-Ping Yee)Guido van Rossum2000-05-301-1/+1
|
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-32/+32
|
* New module -- converts regex regular expressions to re style.Guido van Rossum1997-10-231-0/+186
There are two ways to use this -- as a filter (e.g. using C-U M-| on a regex string literal in an Emacs buffer) or from a Python program which imports this as a module. Read the doc string for more info, and also some caveats (some cases aren't handled right).