Sha256: 86618d548bf1c6dae5bb392a1ab08ef598ea426b9bbb3ab3063136bd59bd2561
Contents?: true
Size: 236 Bytes
Versions: 30
Compression:
Stored size: 236 Bytes
Contents
# PR#242 re.VERBOSE flag not implemented import re cre = re.compile('''# a verbose regular expression \d+ # this line is also ignored hello''', re.VERBOSE) # test it if not cre.match('0123hello'): print 're.VERBOSE did not work'
Version data entries
30 entries across 30 versions & 1 rubygems