diff options
author | Barry Warsaw <barry@python.org> | 1996-12-20 22:00:21 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-12-20 22:00:21 (GMT) |
commit | 4b722788ae2bbd5595aef38f4fd7221a3ab88372 (patch) | |
tree | 8321e9cc292503b7ede51395a4e35566c3ca9c03 /Lib/test/output/test_regex | |
parent | 7f33e403a4c49c9265d44a7d9eb29e84c024e5c6 (diff) | |
download | cpython-4b722788ae2bbd5595aef38f4fd7221a3ab88372.zip cpython-4b722788ae2bbd5595aef38f4fd7221a3ab88372.tar.gz cpython-4b722788ae2bbd5595aef38f4fd7221a3ab88372.tar.bz2 |
added test of the regex module
[NOTE: testall.py and autotest.py might could go away soon, I've
played with Guido's new regrtest.py script and it seems to work well.
I'll wait until Guido gives the word to completely switch over -- and
change the Makefile too!]
Diffstat (limited to 'Lib/test/output/test_regex')
-rw-r--r-- | Lib/test/output/test_regex | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Lib/test/output/test_regex b/Lib/test/output/test_regex new file mode 100644 index 0000000..89ba717 --- /dev/null +++ b/Lib/test/output/test_regex @@ -0,0 +1,29 @@ +test_regex +no match: -1 +successful search: 6 +caught expected exception +failed awk syntax: -1 +successful awk syntax: 2 +failed awk syntax: -1 +matching with group names and compile() +-1 +caught expected exception +matching with group names and symcomp() +7 +801 999 +801 +('801', '999') +('801', '999') +realpat: \([0-9]+\) *\([0-9]+\) +groupindex: {'one': 1, 'two': 2} +not case folded search: -1 +case folded search: 6 +__members__: ['last', 'regs', 'translate', 'groupindex', 'realpat', 'givenpat'] +regs: ((6, 11), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1), (-1, -1)) +last: HELLO WORLD +translate: '\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037 !"#$%&\'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\177\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377' +givenpat: world +match with pos: -1 +search with pos: 18 +bogus group: ('world', None, None) +no name: caught expected exception |