pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Untitled
2 sec ago
Untitled
14 sec ago
MovieTrailers
29 sec ago
Untitled
21 sec ago
Minha Vida
23 sec ago
Styling ToolTipService....
26 sec ago
GURPS Manual B
26 sec ago
Untitled
27 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Mar 9th, 2010 | Syntax:
None
| Size: 0.22 KB | Hits: 67 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
#!/usr/bin/python
import sys
import re
import string
import os
matcher = re.compile(r'.*re[\[:{(]', re.I)
for linea in sys.stdin.readlines():
if not matcher.match(linea):
print linea.rstrip()
create new paste
|
create new version of this paste
RAW Paste Data
#!/usr/bin/python import sys import re import string import os matcher = re.compile(r'.*re[\[:{(]', re.I) for linea in sys.stdin.readlines(): if not matcher.match(linea): print linea.rstrip()