[doc] examples

This commit is contained in:
asciimoo 2013-04-05 13:44:24 +02:00
parent a34d8d10a9
commit d8180cbfcd
1 changed files with 0 additions and 7 deletions

View File

@ -30,8 +30,6 @@ USAGE
### as python module
Examples:
```python
>>> import exrex
```
@ -56,11 +54,6 @@ Examples:
1023
```
```python
>>> list(exrex.generate('[ab]{1,3}'))
['a', 'b', 'aa', 'ab', 'ba', 'bb', 'aaa', 'aab', 'aba', 'abb', 'baa', 'bab', 'bba', 'bbb']
```
```python
>>> print '\n'.join(exrex.generate('This is (a (code|cake|test)|an (apple|elf|output))\.'))
This is a code.