Fred Drake
|
132dce2246
|
Update the code to better reflect recommended style:
Use != instead of <> since <> is documented as "obsolescent".
Use "is" and "is not" when comparing with None or type objects.
|
2000-12-12 23:11:42 +00:00 |
Fred Drake
|
004d5e6880
|
Make reindent.py happy (convert everything to 4-space indents!).
|
2000-10-23 17:22:08 +00:00 |
Fred Drake
|
8ae9ce5e5b
|
Better conformance to the Python Style Guide: use spaces around operators.
|
2000-08-18 16:09:56 +00:00 |
Fredrik Lundh
|
8e6d571a7c
|
-- enabled some temporarily disabled RE tests
-- added basic unicode tests to test_re
-- added test case for Sjoerd's xmllib problem to re_tests
|
2000-08-08 17:06:53 +00:00 |
Fredrik Lundh
|
1151a8cd61
|
-- whitespace cleanup (more tests to be added in the next commit)
|
2000-08-08 16:47:42 +00:00 |
Andrew M. Kuchling
|
e6f164622f
|
Comment out repeated-group test for the moment
|
2000-08-03 12:16:29 +00:00 |
Andrew M. Kuchling
|
a3eacc472c
|
Add nasty test case that overflows the stack with a repeated group
|
2000-08-03 02:06:45 +00:00 |
Guido van Rossum
|
2850d18615
|
Switch to sre for regular expression matching (the new mini-re module
is actually by Fredrik Lundh). This will break the re tests --
Fredrik will fix this before the final release.
|
2000-06-30 16:25:20 +00:00 |
Guido van Rossum
|
c364cf8228
|
Added tests for findall().
Added test for m.groups() with default.
Added a few prints announcing various tests in verbose mode.
|
1998-07-17 20:05:02 +00:00 |
Guido van Rossum
|
1cd4d52f2f
|
Remove RCS and #! cruft at top.
|
1998-06-26 13:38:38 +00:00 |
Guido van Rossum
|
8430c583da
|
AMK's latest
|
1998-04-03 21:47:12 +00:00 |
Guido van Rossum
|
41360a4696
|
Mass check-in after untabifying all files that need it.
|
1998-03-26 19:42:58 +00:00 |
Guido van Rossum
|
f473cb007b
|
Added tests for qualified sub and split
|
1998-01-14 16:42:17 +00:00 |
Guido van Rossum
|
f5910e42d1
|
Add tests for re.L(OCALE).
|
1997-12-30 17:32:33 +00:00 |
Guido van Rossum
|
dfa6790bd6
|
New re version from AMK
|
1997-12-08 17:12:06 +00:00 |
Guido van Rossum
|
9ec2ed466b
|
Change test for re.sub() involving g<...> to use a multi-character
identifier. The previous re.py had a bug that wouldn't show up with
single-char identifier...
|
1997-10-08 04:05:08 +00:00 |
Guido van Rossum
|
d807b7589b
|
The re test suite is very slow on slower hosts.
To save time, only run the first and last 10 tests except in verbose mode.
|
1997-09-04 14:35:45 +00:00 |
Guido van Rossum
|
95e8053a9f
|
1.5a3 prerelease 1 from AMK
|
1997-08-13 22:34:14 +00:00 |
Guido van Rossum
|
4994657c5f
|
Some new tests by Jeffrey
|
1997-07-18 04:26:25 +00:00 |
Guido van Rossum
|
23b225741c
|
Added tests for sub, subn, and split.
|
1997-07-17 22:36:14 +00:00 |
Guido van Rossum
|
a0e4c1bffc
|
Jeffrey's latest -- seems to solve most problems!
|
1997-07-17 14:52:48 +00:00 |
Guido van Rossum
|
e8b81313db
|
Merged Jeffrey's changes in.
|
1997-07-15 18:47:48 +00:00 |
Guido van Rossum
|
23b8d4c15e
|
Tweak re_tests and test_re to differentiate between
groups that have no value and groups that are out of bounds.
|
1997-07-15 15:49:52 +00:00 |
Guido van Rossum
|
847ed4afb5
|
More tweaks; re.py is nearly there...
|
1997-07-15 15:40:57 +00:00 |
Guido van Rossum
|
1d8b7583dc
|
Removed the traceback output in non-verbose mode
|
1997-07-11 21:14:53 +00:00 |
Guido van Rossum
|
035aae0f09
|
Some small nits.
|
1997-07-11 20:47:58 +00:00 |
Guido van Rossum
|
8e0ce30ce4
|
test suite for re.py
|
1997-07-11 19:34:44 +00:00 |