100+ results results for 're.compile lang:python' (2766 ms)
80 # and converts it to a Pythonic syntax for later use. 81 strip_parens_re = re.compile(r'\$(\()(\w+)(\))') 82 convert_to_python_substitution_format_re = re.compile(r'\$(\w+)')flp.py https://bitbucket.org/__wp__/mb-linux-msli.git | Python | 451 lines
271import re 272prog = re.compile('^([^:]*): *(.*)') 273scanner.py https://gitlab.com/l666ljl/fdroidserver | Python | 329 lines
38 39 return [re.compile(r'\s*' + c, re.IGNORECASE) for c in compileCommands] 40 49 usual_suspects = { 50 exp: re.compile(r'.*' + exp, re.IGNORECASE) for exp in [ 51 r'flurryagent', 73 74 gradle_mavenrepo = re.compile(r'maven *{ *(url)? *[\'"]?([^ \'"]*)[\'"]?') 75 75 76 allowed_repos = [re.compile(r'^https?://' + re.escape(repo) + r'/*') for repo in [ 77 'repo1.maven.org/maven2', # mavenCentral() 145 # False positives patterns for files that are binary and executable. 146 safe_paths = [re.compile(r) for r in [ 147 r".*/drawable[^/]*/.*\.png$", # png drawables_python_console.py https://github.com/AndreasEisele/wikitrans-pootle.git | Python | 368 lines
33 34 self.__spaces_pattern = re.compile(r'^\s+') 35 self.namespace = namespacecontroller.py https://gitlab.com/abhi1tb/build | Python | 376 lines
17 18URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") 19vboxmanage.py https://gitlab.com/ricardo.hernandez/salt | Python | 508 lines
31 32UUID_RE = re.compile('[^{0}]'.format('a-zA-Z0-9._-')) 33NAME_RE = re.compile('[^{0}]'.format('a-zA-Z0-9._-'))decoder.py https://gitlab.com/pooja043/Globus_Docker_3 | Python | 400 lines
40 41STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS) 42BACKSLASH = { 138 139WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS) 140WHITESPACE_STR = ' \t\n\r'add_shot.py https://bitbucket.org/bfloch/epp.git | Python | 381 lines
135 # BUG? X:dir\dir instead of X:\dir\dir 136 pa_frontslash = re.compile(r"(\w:)([^\\].*)$") 137 self.GENFILEPATH = pa_frontslash.subn(r'\1\\\2', self.GENFILEPATH)[0]cache.py https://gitlab.com/themill/ftrack-python-api | Python | 579 lines
97 if pattern is not None: 98 pattern = re.compile(pattern) 99assetcache.py https://github.com/etianen/django-optimizations.git | Python | 430 lines
211 def do_load(type, include=(), exclude=()): 212 include = [re.compile(fnmatch.translate(pattern)) for pattern in include] 213 exclude = [re.compile(fnmatch.translate(pattern)) for pattern in exclude]check-c-globals.py https://github.com/albertz/CPython.git | Python | 446 lines
19 20CAPI_REGEX = re.compile(r'^ *PyAPI_DATA\([^)]*\) \W*(_?Py\w+(?:, \w+)*\w).*;.*$') 21docscrape.py https://github.com/deech/pyxnat-1.git | Python | 492 lines
186 187 _name_rgx = re.compile(r"^\s*(:(?P<role>\w+):`(?P<name>[a-zA-Z0-9_.-]+)`|" 188 r" (?P<name2>[a-zA-Z0-9_.-]+))\s*", re.X) 268 summary_str = " ".join([s.strip() for s in summary]).strip() 269 if re.compile('^([\w., ]+=)?\s*[\w\.]+\(.*\)$').match(summary_str): 270 self['Signature'] = summary_straresource.py https://bitbucket.org/bootz/weblate.git | Python | 326 lines
32WHITESPACE = ' \n\t' # Whitespace that we collapse 33MULTIWHITESPACE = re.compile('[ \n\t]{2}') 34etree.py https://gitlab.com/phongphans61/machine-learning-tictactoe | Python | 343 lines
15 16tag_regexp = re.compile("{([^}]*)}(.*)") 17html2text.py https://gitlab.com/reymor/odoo-version7 | Python | 459 lines
14import urlparse 15sgmllib.charref = re.compile('&#([xX]?[0-9a-fA-F]+)[^0-9a-fA-F]') 16 82 83r_unescape = re.compile(r"&(#?[xX]?(?:[0-9a-fA-F]+|\w{1,8}));") 84def unescape(s):win_tool.py https://gitlab.com/blocknotary/IonicInterviews | Python | 314 lines
23# link.exe. 24_LINK_EXE_OUT_ARG = re.compile('/OUT:(?P<out>.+)$', re.IGNORECASE) 25SOAPService.py https://github.com/esmanhotto/emesene.git | Python | 312 lines
53def compress_xml(xml_string): 54 space_regex = [(re.compile('>\s+<'), '><'), 55 (re.compile('>\s+'), '>'), 55 (re.compile('>\s+'), '>'), 56 (re.compile('\s+<'), '<')] 57 165 # Regex to find password 166 self.password_regex = re.compile("<wsse:Password>.*?</wsse:Password>", re.S) 167cmd_line.py https://bitbucket.org/rafaelmoreira/sublime-text.git | Python | 340 lines
145 sign = 1 146 is_num_or_sign = re.compile('^[0-9+-]') 147 while self.c != EOF and is_num_or_sign.match(self.c): 177 rv = '' 178 r = re.compile(regex) 179 while self.c != EOF and r.match(self.c): 299 sign = 1 300 is_num_or_sign = re.compile('^[0-9+-]') 301 while self.c != EOF and is_num_or_sign.match(self.c): 328 rv = '' 329 r = re.compile(regex) 330 while self.c != EOF and r.match(self.c):retrieval.py https://github.com/frankk00/openblock.git | Python | 277 lines
36 37license_types_re = re.compile(r'(?si)<b>\d\) License Type:</b> (?P<license_type>.*?)</td></tr><tr><td><b>\s*License Type Status:</b> (?P<license_type_status>.*?)</td></tr><tr><td><b>\s*Status Date: </b> (?P<status_date>.*?) <b>\s*Term: (?P<term>.*?)</td></tr><tr><td><b>\s*Original Issue Date: </b> (?P<original_issue_date>.*?) <b>\s*Expiration Date: </b> (?P<expiration_date>.*?) </tr><tr><td><b>\s*Master: </b> (?P<master>.*?)\s*<b>\s*Duplicate: </b> (?P<duplicate>.*?) <b>\s*Fee Code: </b> (?P<fee_code>.*?)</td></tr>') 38 48 has_detail = True 49 parse_detail_re = re.compile(r'(?si)License Number: </b>.*? <b>\s*Status: </b>(?P<status>.*?)</td></tr><tr><td><b>Primary Owner: </b>(?P<primary_owner>.*?)</td></tr><td><b>ABC Office of Application: </b>(?P<office_of_application>.*?)</td></tr></tr><tr><td bgcolor=#260066 class=header><font color=white> <b>Business Name </font></b></td></tr>(?P<business_name>.*?)<tr><td bgcolor=#260066 class=header><font color=white> <b>Business Address </font></b></td><td bgcolor=#260066 class=header></td></tr><tr><td><b>Address: </b>(?P<address>.*?)<b>Census Tract: </b>(?P<census_tract>.*?)</td></tr><tr><td><b>City: </b>(?P<city>.*?) <b>County: </b>(?P<county>.*?)</td></tr><tr><td><b>State: </b>(?P<state>.*?) <b>Zip Code: </b>(?P<zipcode>.*?)</td></tr><tr><td bgcolor=#260066 class=header><font color=white> <b>Licensee Information </font></b></td></tr><tr><td><b>Licensee: </b>.*?</td></tr><tr><td bgcolor=#260066 class=header><font color=white> <B>License Types </font></b></td></tr><tr><td>(?P<license_types>.*?)<tr><td bgcolor=#260066 class=header><font color=white> <b>Current Disciplinary Action </font>') 50test_filelist.py https://github.com/albertz/CPython.git | Python | 340 lines
139 # is a regex 140 regex = re.compile('a') 141 self.assertEqual(_fortran.py https://github.com/matthew-brett/scipy.git | Python | 444 lines
86def uses_mkl(info): 87 r_mkl = re.compile("mkl") 88 libraries = info.get('libraries', '')readability.py https://gitlab.com/zouxc/cola | Python | 368 lines
38REGEXES = { 39 'unlikelyCandidatesRe': re.compile('combx|comment|disqus|foot|header|menu|meta|nav|rss|shoutbox|sidebar|aside|sponsor',re.I), 40 'okMaybeItsACandidateRe': re.compile('and|article|body|column|main',re.I), 40 'okMaybeItsACandidateRe': re.compile('and|article|body|column|main',re.I), 41 'positiveRe': re.compile('article|body|content|entry|hentry|page|pagination|post|text',re.I), 42 'negativeRe': re.compile('combx|comment|contact|foot|footer|footnote|link|media|meta|promo|related|scroll|shoutbox|sponsor|tags|widget',re.I), 42 'negativeRe': re.compile('combx|comment|contact|foot|footer|footnote|link|media|meta|promo|related|scroll|shoutbox|sponsor|tags|widget',re.I), 43 'divToPElementsRe': re.compile('<(a|blockquote|dl|div|img|ol|p|pre|table|ul)',re.I), 44 'replaceBrsRe': re.compile('(<br[^>]*>[ \n\r\t]*){2,}',re.I), 44 'replaceBrsRe': re.compile('(<br[^>]*>[ \n\r\t]*){2,}',re.I), 45 'replaceFontsRe': re.compile('<(\/?)font[^>]*>',re.I), 46 'trimRe': re.compile('^\s+|\s+$/'), 46 'trimRe': re.compile('^\s+|\s+$/'), 47 'normalizeRe': re.compile('\s{2,}/'), 48 'killBreaksRe': re.compile('(<br\s*\/?>(\s| ?)*){1,}/'),app.py https://gitlab.com/jennings.p.c/ase-f-ase | Python | 459 lines
108# Find numbers in formulas so that we can convert H2O to H<sub>2</sub>O: 109SUBSCRIPT = re.compile(r'(\d+)') 110Checker.py https://gitlab.com/t0b3/m2crypto | Python | 297 lines
66 67 numericIpMatch = re.compile('^[0-9]+(\.[0-9]+)*$') 68 258 certHost = certHost.replace('*', '[^\.]*') 259 if re.compile('^%s$' % (certHost)).match(host): 260 return Truemetadata.py https://gitlab.com/areema/myproject | Python | 317 lines
38# in METADATA/PKG-INFO. Support its syntax with the extra at the end only. 39EXTRA_RE = re.compile("""^(?P<package>.*?)(;\s*(?P<condition>.*?)(extra == '(?P<extra>.*?)')?)$""") 40KEYWORDS_RE = re.compile("[\0-,]+")toc.py https://gitlab.com/Haritiana/Python-Markdown | Python | 310 lines
31 32IDCOUNT_RE = re.compile(r'^(.*)_([0-9]+)$') 33 139 140 self.header_rgx = re.compile("[Hh][123456]") 141encoder.py https://github.com/ChuguluGames/mediawiki-svn.git | Python | 371 lines
9 10ESCAPE = re.compile(r'[\x00-\x19\\"\b\f\n\r\t]') 11ESCAPE_ASCII = re.compile(r'([\\"/]|[^\ -~])')DSSP.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 346 lines
38# Match C in DSSP 39_dssp_cys=re.compile('[a-z]') 40setup_ios_gn.py https://github.com/chromium/chromium.git | Python | 405 lines
39LLDBINIT_SKIP_PATTERNS = ( 40 re.compile('^script sys.path\\[:0\\] = \\[\'.*/src/tools/lldb\'\\]$'), 41 re.compile('^script import lldbinit$'), 41 re.compile('^script import lldbinit$'), 42 re.compile('^settings append target.source-map .* /google/src/.*$'), 43) 58 59 ENV_VAR_PATTERN = re.compile(r'\$([A-Za-z0-9_]+)') 60operations.py https://github.com/postmates/django.git | Python | 342 lines
37 "For SpatiaLite Relate(<geom>, <pattern>) calls." 38 pattern_regex = re.compile(r'^[012TF\*]{9}$') 39 def __init__(self, pattern): 53 spatialite = True 54 version_regex = re.compile(r'^(?P<major>\d)\.(?P<minor1>\d)\.(?P<minor2>\d+)') 55 valid_aggregates = dict([(k, None) for k in ('Extent', 'Union')])SideBarItem.py https://gitlab.com/Blueprint-Marketing/sublime-config | Python | 476 lines
74 print '-------------------------------------------------------' 75 path4 = re.sub(re.compile("^"+re.escape(path2), re.IGNORECASE), '', path3); 76 print path4test_build_file_address_mapper.py https://gitlab.com/Ivy001/pants | Python | 281 lines
147 148 NO_FAIL_FAST_RE = re.compile(r"""^-------------------- 149.*hostmototube_blocked_spark_videos.py https://gitlab.com/zatoshi/iptvplayer-for-e2 | Python | 355 lines
104 if not sts: return 105 match = re.compile('<a class="submenu" href="([^"]+?)">([^<]+?)</a>').findall(data) 106 if match:tests.py https://github.com/etianen/django.git | Python | 363 lines
195 (RegexValidator('[0-9]+'), '1234', None), 196 (RegexValidator(re.compile('[0-9]+')), '1234', None), 197 (RegexValidator('.*'), '', None), 197 (RegexValidator('.*'), '', None), 198 (RegexValidator(re.compile('.*')), '', None), 199 (RegexValidator('.*'), 'xxxxx', None), 201 (RegexValidator('x'), 'y', ValidationError), 202 (RegexValidator(re.compile('x')), 'y', ValidationError), 203 (RegexValidator('x', inverse_match=True), 'y', None), 203 (RegexValidator('x', inverse_match=True), 'y', None), 204 (RegexValidator(re.compile('x'), inverse_match=True), 'y', None), 205 (RegexValidator('x', inverse_match=True), 'x', ValidationError), 205 (RegexValidator('x', inverse_match=True), 'x', ValidationError), 206 (RegexValidator(re.compile('x'), inverse_match=True), 'x', ValidationError), 207dnsproxy.py https://gitlab.com/0072016/Google-5 | Python | 321 lines
31 32is_local_addr = re.compile(r'(?i)(?:[0-9a-f:]+0:5efe:)?(?:127(?:\.\d+){3}|10(?:\.\d+){3}|192\.168(?:\.\d+){2}|172\.(?:1[6-9]|2\d|3[01])(?:\.\d+){2})').match 33js2c.py https://gitlab.com/brian0218/rk3066_r-box_android4.2.2_sdk | Python | 396 lines
56 lines = re.sub(r'//.*\n', '\n', lines) # end-of-line comments 57 lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments. 58 lines = re.sub(r'\s+\n+', '\n', lines) # trailing whitespace 96 97EVAL_PATTERN = re.compile(r'\beval\s*\(') 98WITH_PATTERN = re.compile(r'\bwith\s*\(') 175 176CONST_PATTERN = re.compile(r'^const\s+([a-zA-Z0-9_]+)\s*=\s*([^;]*);$') 177MACRO_PATTERN = re.compile(r'^macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$') 177MACRO_PATTERN = re.compile(r'^macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$') 178PYTHON_MACRO_PATTERN = re.compile(r'^python\s+macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$') 179 192 value = const_match.group(2).strip() 193 constants.append((re.compile("\\b%s\\b" % name), value)) 194 else:html_completions.py https://gitlab.com/Blueprint-Marketing/sublime-config | Python | 263 lines
33 # Check the first location looks like an expression 34 rex = re.compile("([\w-]+)([.#])(\w+)") 35 expr = match(rex, lines[0])escape.py https://github.com/daharon/tornado.git | Python | 327 lines
62 63_XHTML_ESCAPE_RE = re.compile('[&<>"]') 64_XHTML_ESCAPE_DICT = {'&': '&', '<': '<', '>': '>', '"': '"'} 222# This regex should avoid those problems. 223_URL_RE = re.compile(ur"""\b((?:([\w-]+):(/{1,3})|www[.])(?:(?:(?:[^\s&()]|&|")*(?:[^!"#$%&'()*+,.:;<=>?@\[\]^`{|}~\s]))|(?:\((?:[^\s&()]|&|")*\)))+)""") 224base.py https://github.com/aruder77/applause.git | Python | 326 lines
61# http://dev.mysql.com/doc/refman/5.0/en/news.html . 62server_version_re = re.compile(r'(\d{1,2})\.(\d{1,2})\.(\d{1,2})') 63core.py https://github.com/junalmeida/Sick-Beard.git | Python | 387 lines
9_alabel_prefix = b'xn--' 10_unicode_dots_re = re.compile(u'[\u002e\u3002\uff0e\uff61]') 11download.py https://gitlab.com/aguai/lilykde | Python | 340 lines
36# parse version of a LilyPond package 37_version_re = re.compile(r'(\d+(\.\d+)+)(-(\d+))?') 38manifest.py https://gitlab.com/actawithamana/poky | Python | 344 lines
297 with open(self.full_manifest, 'w+') as manifest: 298 pkg_re = re.compile('^Installing ([^ ]+) [^ ].*') 299 for line in set(output.split('\n')):HTMLParser.py https://gitlab.com/dahbearz/CRYENGINE | Python | 393 lines
15 16interesting_normal = re.compile('[&<]') 17interesting_cdata = re.compile(r'<(/|\Z)') 17interesting_cdata = re.compile(r'<(/|\Z)') 18incomplete = re.compile('&[a-zA-Z#]') 19 19 20entityref = re.compile('&([a-zA-Z][-.a-zA-Z0-9]*)[^a-zA-Z0-9]') 21charref = re.compile('&#(?:[0-9]+|[xX][0-9a-fA-F]+)[^0-9a-fA-F]') 22 23starttagopen = re.compile('<[a-zA-Z]') 24piclose = re.compile('>') 24piclose = re.compile('>') 25commentclose = re.compile(r'--\s*>') 26tagfind = re.compile('[a-zA-Z][-.a-zA-Z0-9:_]*')sort_includes.py https://gitlab.com/pranith/gem5 | Python | 317 lines
69 70include_re = re.compile(r'([#%])(include|import).*[<"](.*)[">]') 71def include_key(line): 97 98 rex = re.compile(r'^(%s)\s*%s(.*)%s(.*)$' % (keyword, delim[0], delim[1])) 99 110 111 rex = re.compile(fname) 112 base_matcher = _include_matcher(**kwargs) 128 base_matcher = _include_matcher(delim='""') 129 rex = re.compile(r"^src/(.*)\.([^.]+)$") 130 header_map = {tmxr200x.py https://bitbucket.org/alexei-matveev/ase-local.git | Python | 256 lines
82 # http://stackoverflow.com/questions/647655/python-regex-split-and-special-character 83 table = re.compile('(:.*:)').split(table) 84 # remove empty elementsxunit.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 332 lines
54# Invalid XML characters, control characters 0-31 sans \t, \n and \r 55CONTROL_CHARACTERS = re.compile(r"[\000-\010\013\014\016-\037]") 56 56 57TEST_ID = re.compile(r'^(.*?)(\(.*\))$') 58automarkup.py https://github.com/kvaneesh/linux.git | Python | 293 lines
32# 33RE_function = re.compile(r'\b(([a-zA-Z_]\w+)\(\))', flags=ascii_p3) 34 37# 38RE_generic_type = re.compile(r'\b(struct|union|enum|typedef)\s+([a-zA-Z_]\w+)', 39 flags=ascii_p3) 44# 45RE_struct = re.compile(r'\b(struct)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 46RE_union = re.compile(r'\b(union)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 46RE_union = re.compile(r'\b(union)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 47RE_enum = re.compile(r'\b(enum)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 48RE_typedef = re.compile(r'\b(typedef)\s+([a-zA-Z_]\w+)', flags=ascii_p3) 53# 54RE_doc = re.compile(r'(\bDocumentation/)?((\.\./)*[\w\-/]+)\.(rst|txt)') 55csrf.py https://gitlab.com/gregtyka/Scryve-Webapp | Python | 294 lines
18_POST_FORM_RE = \ 19 re.compile(r'(<form\W[^>]*\bmethod\s*=\s*(\'|"|)POST(\'|"|)\b[^>]*>)', re.IGNORECASE) 20version.py https://gitlab.com/abhi1tb/build | Python | 420 lines
123 124_legacy_version_component_re = re.compile(r"(\d+ | [a-z]+ | \.| -)", re.VERBOSE) 125 214 215 _regex = re.compile(r"^\s*" + VERSION_PATTERN + r"\s*$", re.VERBOSE | re.IGNORECASE) 216 363 364_local_version_separators = re.compile(r"[\._-]") 365config.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 284 lines
21 22nonascii_re = re.compile(b(r'[\x80-\xff]')) 23special_env_vars.py https://github.com/1000timesdead/portage-funtoo.git | Python | 176 lines
109 110environ_whitelist_re = re.compile(r'^(CCACHE_|DISTCC_).*') 111egg_info.py https://github.com/xdissent/vendor.git | Python | 451 lines
207 revision = 0 208 urlre = re.compile('url="([^"]+)"') 209 revre = re.compile('committed-rev="(\d+)"')microcode-tool.py https://gitlab.com/gmbnomis/u-boot | Python | 317 lines
49 """ 50 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 51 re_license = re.compile('/[^-*+] *(.*)$') 51 re_license = re.compile('/[^-*+] *(.*)$') 52 re_name = re.compile('/\* *(.*)\.inc *\*/', re.IGNORECASE) 53 microcodes = {}pyv8loader.py https://gitlab.com/Blueprint-Marketing/sublime-config | Python | 383 lines
154 if e.returncode == 8: 155 regex = re.compile('^.*ERROR (\d+):.*', re.S) 156 if re.sub(regex, '\\1', error_line) == '503':default.py https://github.com/dpodhola/wwscc.git | Python | 375 lines
19 20AUTOCOMMIT_REGEXP = re.compile(r'\s*(?:UPDATE|INSERT|CREATE|DELETE|DROP|ALTER)', 21 re.I | re.UNICODE)sourceDatabase.py https://bitbucket.org/alexei-matveev/petsc-debian-pkg.git | Python | 374 lines
43 '''A SourceDB is a dictionary of file data used during the build process.''' 44 includeRE = re.compile(r'^#include (<|")(?P<includeFile>.+)\1') 45 isLoading = 0 284 self.sourceDB = sourceDB 285 self.includeRE = re.compile(r'^#include (<|")(?P<includeFile>.+)\1') 286 return 361 sourceDB.logPrint('Matching regular expression '+sys.argv[3]+' over source database', 1, 'sourceDB') 362 removeRE = re.compile(sys.argv[3]) 363 removes = filter(removeRE.match, sourceDB.keys())appadmin.py https://github.com/goldenboy/skiheilw2p.git | Python | 408 lines
161 dbname = request.args[0] 162 regex = re.compile('(?P<table>\w+)\.(?P<field>\w+)=(?P<value>\d+)') 163 if len(request.args)>1 and hasattr(db[request.args[1]],'_primarykey'): 163 if len(request.args)>1 and hasattr(db[request.args[1]],'_primarykey'): 164 regex = re.compile('(?P<table>\w+)\.(?P<field>\w+)=(?P<value>.+)') 165 if request.vars.query: 209 if form.accepts(request.vars, formname=None): 210# regex = re.compile(request.args[0] + '\.(?P<table>\w+)\.id\>0') 211 regex = re.compile(request.args[0] + '\.(?P<table>\w+)\..+')printing.py https://gitlab.com/UBERTC/arm-eabi-5.3-old | Python | 285 lines
174 self.gen_printer = gen_printer 175 self.compiled_re = re.compile(regexp) 176colorizer.py https://gitlab.com/abhi1tb/build | Python | 336 lines
30 31prog = re.compile(make_pat(), re.S) 32idprog = re.compile(r"\s+(\w+)", re.S)highlight.py https://github.com/goldenboy/skiheilw2p.git | Python | 334 lines
125 'C': (c_tokenizer, ( 126 ('COMMENT', re.compile(r'//.*\r?\n'), 127 'color: green; font-style: italic'), 127 'color: green; font-style: italic'), 128 ('MULTILINECOMMENT', re.compile(r'/\*.*?\*/', re.DOTALL), 129 'color: green; font-style: italic'), 129 'color: green; font-style: italic'), 130 ('PREPROCESSOR', re.compile(r'\s*#.*?[^\\]\s*\n', 131 re.DOTALL), 'color: magenta; font-style: italic'), 131 re.DOTALL), 'color: magenta; font-style: italic'), 132 ('PUNC', re.compile(r'[-+*!&|^~/%\=<>\[\]{}(),.:]'), 133 'font-weight: bold'), 134 ('NUMBER', 135 re.compile(r'0x[0-9a-fA-F]+|[+-]?\d+(\.\d+)?([eE][+-]\d+)?|\d+'), 136 'color: red'),LsfPlugin.py https://github.com/PerilousApricot/WMCore.git | Python | 319 lines
135 jobName = "WMAgentJob" 136 regExpParser = re.compile('.*/JobCreator/JobCache/([^/]+)/[^/]+/.*') 137 match = regExpParser.match(job['cache_dir']) 183 # check for correct naming convention in PFN 184 regExpParser = re.compile('Job <([0-9]+)> is submitted to queue') 185 match = regExpParser.match(stdout)models.py https://github.com/guetux/feincms.git | Python | 399 lines
133 134APPLICATIONCONTENT_RE = re.compile(r'^([^/]+)/([^/]+)$') 135base.py https://github.com/frankk00/openblock.git | Python | 331 lines
25 26block_re = re.compile(r'^(\d+)[-\s]+(?:blk|block)\s+(?:of\s+)?(.*)$', re.IGNORECASE) 27intersection_re = re.compile(r'(?<=.) (?:and|\&|at|near|@|around|towards?|off|/|(?:just )?(?:north|south|east|west) of|(?:just )?past) (?=.)', re.IGNORECASE) 27intersection_re = re.compile(r'(?<=.) (?:and|\&|at|near|@|around|towards?|off|/|(?:just )?(?:north|south|east|west) of|(?:just )?past) (?=.)', re.IGNORECASE) 28# segment_re = re.compile(r'^.{1,40}?\b(?:between .{1,40}? and|from .{1,40}? to) .{1,40}?$', re.IGNORECASE) # TODO 29buildinator_common.py https://github.com/vasi/kdelibs.git | Python | 152 lines
139 Lines = GetSvnLog ( SvnUrl ) 140 RevisionLine = re.compile( '^r\d+\s') 141 Revisions = []sgml.py https://github.com/noplay/scrapy.git | Python | 158 lines
89 90_re_type = type(re.compile("", 0)) 91 99 deny_extensions=None): 100 self.allow_res = [x if isinstance(x, _re_type) else re.compile(x) for x in arg_to_iter(allow)] 101 self.deny_res = [x if isinstance(x, _re_type) else re.compile(x) for x in arg_to_iter(deny)]custom_forms.py https://github.com/will-moore/openmicroscopy.git | Python | 346 lines
55 def is_valid_email(self, email): 56 email_pat = re.compile( 57 r"(?:^|\s)[-a-z0-9_.]+@(?:[-a-z0-9]+\.)+[a-z]{2,6}(?:\s|$)", 71 def is_valid_url(self, url): 72 url_pat = re.compile( 73 r'http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|'mklatex.py https://github.com/jcrobak/hue.git | Python | 318 lines
31 32replace_invalid = re.compile(r'[-_/.\s\\]').sub 33replace_content = re.compile("\{[^\}]*\}").sub 34 35replace_epydoc_macros = re.compile(r'(,\s*amssymb|dvips\s*,\s*)').sub 36replace_rst_macros = re.compile(r'(\\usepackage\{color}|\\usepackage\[[^]]*]\{hyperref})').sub 129 130 search_title = re.compile(r'\\title{([^}]*)}').search 131 skipping = re.compile(r'(\\end{document}|\\tableofcontents)').search 182 183 replace_interdoc_hyperrefs = re.compile( 184 r'\\href\{([^/}]+)[.]([^./}]+)\}').sub 184 r'\\href\{([^/}]+)[.]([^./}]+)\}').sub 185 replace_docinternal_hyperrefs = re.compile( 186 r'\\href\{\\#([^}]+)\}').subImImagePlugin.py https://gitlab.com/abhi1tb/build | Python | 377 lines
103 104split = re.compile(br"^([A-Za-z][^:]*):[ \t]*(.*)[ \t]*$") 105interface_gen.py https://github.com/wizzk42/scipy.git | Python | 162 lines
8 # remove comments 9 comment_block_exp = re.compile(r'/\*(?:\s|.)*?\*/') 10 subroutine_exp = re.compile(r'subroutine (?:\s|.)*?end subroutine.*') 10 subroutine_exp = re.compile(r'subroutine (?:\s|.)*?end subroutine.*') 11 function_exp = re.compile(r'function (?:\s|.)*?end function.*') 12 26def convert_types(interface_in,converter): 27 regexp = re.compile(r'<type_convert=(.*?)>') 28 interface = interface_in[:] 65 #loop through the subs 66 type_exp = re.compile(r'<tchar=(.*?)>') 67 TYPE_EXP = re.compile(r'<TCHAR=(.*?)>') 67 TYPE_EXP = re.compile(r'<TCHAR=(.*?)>') 68 routine_name = re.compile(r'(subroutine|function)\s*(?P<name>\w+)\s*\(') 69 interface = ''lexer.py https://github.com/hakanw/django-debug-toolbar.git | Python | 331 lines
80 try: 81 rex = re.compile(tdef[0], rflags).match 82 except Exception, err:quoprimime.py https://bitbucket.org/lbesson/web-sphinx-scripts.git | Python | 336 lines
56 57hqre = re.compile(r'[^-a-zA-Z0-9!*+/ ]') 58bqre = re.compile(r'[^ !-<>-~\t]')codecontext.py https://github.com/albertz/CPython.git | Python | 244 lines
25 26def get_spaces_firstword(codeline, c=re.compile(r"^(\s*)(\w*)")): 27 "Extract the beginning whitespace and first word from codeline."test_searchengine.py https://gitlab.com/abhi1tb/build | Python | 330 lines
96 line = "Here is an 'is' test text." 97 prog = re.compile('is') 98 Equal(se.search_reverse(prog, line, len(line)).span(), (12, 14)) 170 temppat = engine.getprog() 171 Equal(temppat.pattern, re.compile('Hello', re.IGNORECASE).pattern) 172 engine.casevar.set(1) 173 temppat = engine.getprog() 174 Equal(temppat.pattern, re.compile('Hello').pattern, 0) 175 214 cls.text.insert('1.0', test_text) 215 cls.pat = re.compile('target') 216 282 cls.text.insert('1.0', test_text) 283 cls.pat = re.compile('target') 284 cls.res = (2, (10, 16)) # line, slice indexes of 'target'validators.py https://gitlab.com/johnfromthefuture/TA-fuzzy | Python | 394 lines
114 """ 115 pattern = re.compile(r'''[_.a-zA-Z-][_.a-zA-Z0-9-]*$''') 116 326 self.name = six.text_type(name) 327 self.pattern = re.compile(pattern, flags) 328 344 """ 345 pattern = re.compile(r'''(?=\w)[^\d]\w*$''', re.UNICODE) 346 365 try: 366 value = re.compile(six.text_type(value)) 367 except re.error as error:storage.py https://github.com/gregmuellegger/django.git | Python | 290 lines
64 for pattern in patterns: 65 compiled = re.compile(pattern) 66 self._patterns.setdefault(extension, []).append(compiled)plugintest.py https://github.com/mozilla/affiliates-lib.git | Python | 343 lines
234 # this regexp taken from Python 2.5's doctest 235 traceback_re = re.compile(r""" 236 # Grab the traceback header. Different versions of Python have 253def simplify_warnings(out): 254 warn_re = re.compile(r""" 255 # Cut the file and line no, up to the warning namerepr.py https://bitbucket.org/biideal/pyramid_debugtoolbar.git | Python | 300 lines
34missing = object() 35_paragraph_re = re.compile(r'(?:\r\n|\r|\n){2,}') 36RegexType = type(_paragraph_re) 148 return text_( 149 're.compile(<span class="string regex">%s</span>)' % pattern) 150mailboxer_list.py https://github.com/socialplanning/opencore-listen.git | Python | 303 lines
28# A REGEX for messages containing mail-commands 29mail_command_re = re.compile('\(mail-command:([A-Za-z_-]+)', 30 re.IGNORECASE)search.py https://github.com/kazcw/miro.git | Python | 286 lines
41# XXX not correct as we don't take into account of foreign quotation marks 42QUOTEKILLER = re.compile(r'(?<!\\)"') 43SLASHKILLER = re.compile(r'\\.') 44# Let's hope all this stuff is in Unicode... 45WORDMATCHER = re.compile("\w+", re.UNICODE) 46NGRAM_MIN = 3ElementPath.py https://gitlab.com/envieidoc/Clover | Python | 303 lines
60 61xpath_tokenizer_re = re.compile( 62 "("test_checks.py https://github.com/openstack/neutron.git | Python | 287 lines
23 24CREATE_DUMMY_MATCH_OBJECT = re.compile('a') 25models.py https://github.com/LittleForker/django-minishop.git | Python | 317 lines
26 27SHA1_RE = re.compile('^[a-f0-9]{40}$') 28tvnamer.py https://bitbucket.org/fyelles/sick-beard.git | Python | 340 lines
52 # foo_[s01]_[e01]_[e02] 53 (re.compile('''^(.+?)[ \._\-]\[[Ss](\d+)\]((?:_\[[Ee]\d+\])+)[^\\/]*$'''), 54 re.compile('''_\[[Ee](\d+)\]''')), 55 # foo.1x09x10 or foo.1x09-10 56 (re.compile('''^(.+?)[ \._\-]\[?([0-9]+)((?:[x-]\d+)+)[^\\/]*$'''), 57 re.compile('''[x-](\d+)''')), 58 # foo.s01.e01.e02, foo.s01e01e02, foo.s01_e01_e02, etc 59 (re.compile('''^(.+?)[ \._\-][Ss]([0-9]+)((?:[\.\-_ ]?[Ee]\d+)+)[^\\/]*$'''), 60 re.compile('''[\.\-_ ]?[Ee](\d+)''')), 61 # foo.205 (single eps only) 62 (re.compile('''^(.+)[ \._\-]([0-9]{1})([0-9]{2})[\._ -][^\\/]*$'''), 63 re.compile("(\d{2})")), 64 # foo.0205 (single eps only) 65 (re.compile('''^(.+)[ \._\-]([0-9]{2})([0-9]{2,3})[\._ -][^\\/]*$'''), 66 re.compile("(\d{2,3})"))version.py https://github.com/albertz/CPython.git | Python | 343 lines
129 130 version_re = re.compile(r'^(\d+) \. (\d+) (\. (\d+))? ([ab](\d+))?$', 131 re.VERBOSE | re.ASCII) 299 300 component_re = re.compile(r'(\d+ | [a-z]+ | \.)', re.VERBOSE) 301PRESUBMIT.py https://github.com/chromium/chromium.git | Python | 262 lines
49 50 pattern = input_api.re.compile(r'#include\s+[<"](.+)\.mojom(.*)\.h[>"]') 51 public_folder = input_api.os_path.normpath('third_party/blink/public/') 207 """ 208 printf_re = input_api.re.compile(r'^\s*(printf\(|fprintf\(stderr,)') 209 errors = input_api.canned_checks._FindNewViolationsOfRule(chordpro_parser.py https://gitlab.com/petern3/guitar_music | Python | 348 lines
15 16CHORD_REGEX = re.compile("(?P<chord>(?P<root>[A-G][#b]?)(?P<mod>(m|sus|add|maj|dim|aug)?[0-9]?)*(?P<bass>\/[A-G][#b])?)") 17INSTRUCTION_REGEX = re.compile("\(?(?P<instruction>[Rr]ing|[Mm]ute|[Rr]ake|PM|pm)\)?") 45 regex = "( *({0}|{1}))+".format(CHORD_REGEX.pattern, INSTRUCTION_REGEX.pattern) 46 return re.compile(regex) 47 53 regex = " *(?P<pre>pre)?[ \-]?(?P<label>{0}) *(?P<value>x?[0-9]*)".format(middle[:-1]) 54 return re.compile(regex, re.IGNORECASE) 55 61 regex = " *(?P<info>{0})\W+(?P<value>[0-9]+|.+)".format(middle[:-1]) 62 return re.compile(regex, re.IGNORECASE) 63 66 regex = "\s*(\|{0,2}[A-Gb]?\|{0,2}[-x0-9|:]{4,})" 67 return re.compile(regex) 68apiclient-rax.py https://gitlab.com/kawsark/pyrestclient | Python | 178 lines
20 f = open(credentials_file, 'r') 21 pattern = re.compile("\s*\[rackspace_cloud\]\s*username\s*=\s*(\S*)\s*api_key\s*=\s*(\S*)") 22 match = pattern.search(f.read()) 38 #Extract token from response: 39 p1 = re.compile("token.*\"id\":\"(.*?)\",") 40 m1 = p1.search(r.text) 43 #Extract tenantId from response: 44 p2 = re.compile("\"tenantId\":\"(\d*?)\",") 45 m2 = p2.search(r.text)mr_postfix_bounce.py https://bitbucket.org/wangqiang8511/mrjob.git | Python | 163 lines
31 32PROCESS_TYPE_PATTERN = re.compile( 33 r'postfix-(?P<queue>[^/]+)/(?P<process>[^[]+)\[\d+\]:') 33 r'postfix-(?P<queue>[^/]+)/(?P<process>[^[]+)\[\d+\]:') 34MESSAGE_ID_PATTERN = re.compile( 35 r'^(?P<message_id>[A-Z0-9]+): (?P<postfix_message>.*)') 35 r'^(?P<message_id>[A-Z0-9]+): (?P<postfix_message>.*)') 36VAR_PATTERN = re.compile(r'(?P<name>\w+)=(?P<value>[^ ,]+)') 37HOST_PATTERN = re.compile( 39 r' (?P<message>.*)[\)]') 40KEY_VALUE_PATTERN = re.compile(r'(?:^|, )(?P<key>\w+)=(?P<value>[^, ]+)') 41DOMAIN_PATTERN = re.compile(r'(?<=@)[^.]+\.\w+')retrieval.py https://github.com/UXE/everyblock.git | Python | 134 lines
55 schema_slugs = ('graffiti-pending-cleanup',) 56 parse_list_re = re.compile(r'(?si)<tr[^>]*>\s*<td[^>]*>(?P<street_number>[^<]*)</td><td[^>]*>(?P<street_name>[^<]*)</td><td[^>]*>(?P<street_suffix>[^<]*)</td><td[^>]*>(?P<borough>[^<]*)</td><td[^>]*>(?P<zipcode>[^<]*)</td><td[^>]*>[^<]*</td><td[^>]*>[^<]*</td><td[^>]*>[^<]*</td><td[^>]*>(?P<waiver_date>[^<]*)</td><td[^>]*>Waiver Received</td>\s*</tr>') 57 source_url = 'https://a002-oom03.nyc.gov/graffiti/Pending.aspx' 88 schema_slugs = ('graffiti-cleaned',) 89 parse_list_re = re.compile(r'(?si)<tr[^>]*>\s*<td[^>]*>(?P<street_number>[^<]*)</td><td[^>]*>(?P<street_name>[^<]*)</td><td[^>]*>(?P<street_suffix>[^<]*)</td><td[^>]*>(?P<borough>[^<]*)</td><td[^>]*>(?P<zipcode>[^<]*)</td><td[^>]*>[^<]*</td><td[^>]*>[^<]*</td><td[^>]*>[^<]*</td><td[^>]*>(?P<waiver_date>\d\d/\d\d/\d\d)</td><td[^>]*>(?P<completed_on>\d\d/\d\d/\d\d)</td><td[^>]*>(?P<status>[^<]*)</td>\s*</tr>') 90 source_url = 'https://a002-oom03.nyc.gov/graffiti/Completed.aspx'vintage_motions.py https://gitlab.com/Blueprint-Marketing/sublime-config | Python | 375 lines
164 if repeat == 1: 165 re_brackets = re.compile(r"([(\[{])|([)}\])])") 166 def move_to_next_bracket(pt):api.py https://gitlab.com/mkerfoot/home-assistant | Python | 399 lines
49 hass.http.register_path( 50 'GET', re.compile(r'/api/states/(?P<entity_id>[a-zA-Z\._0-9]+)'), 51 _handle_get_api_states_entity) 52 hass.http.register_path( 53 'POST', re.compile(r'/api/states/(?P<entity_id>[a-zA-Z\._0-9]+)'), 54 _handle_post_state_entity) 55 hass.http.register_path( 56 'PUT', re.compile(r'/api/states/(?P<entity_id>[a-zA-Z\._0-9]+)'), 57 _handle_post_state_entity) 58 hass.http.register_path( 59 'DELETE', re.compile(r'/api/states/(?P<entity_id>[a-zA-Z\._0-9]+)'), 60 _handle_delete_state_entity) 64 hass.http.register_path( 65 'POST', re.compile(r'/api/events/(?P<event_type>[a-zA-Z\._0-9]+)'), 66 _handle_api_post_events_event)subversion.py https://gitlab.com/phongphans61/machine-learning-tictactoe | Python | 329 lines
22 23_svn_xml_url_re = re.compile('url="([^"]+)"') 24_svn_rev_re = re.compile(r'committed-rev="(\d+)"') 24_svn_rev_re = re.compile(r'committed-rev="(\d+)"') 25_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') 26_svn_info_xml_url_re = re.compile(r'<url>(.*)</url>')get_legislation.py https://github.com/rcadby/fiftystates.git | Python | 329 lines
66 67 for link in bill_list_page.findAll(href=re.compile(bill_link_re)): 68 self.parse_bill(chamber, session, special, link) 205 for link in chamber_votes_page.findAll( 206 'a', href=re.compile('rc_view')): 207 233 linkback = vote_page.find( 234 'a', href=re.compile('billinfo')).parent.parent 235 date = linkback.find('div').string 301 for link in member_list_page.findAll( 302 'a', href=re.compile('_bio\.cfm\?id=')): 303utils.py https://github.com/mozilla/kuma-lib.git | Python | 485 lines
71 if isinstance(expected_regex, basestring): 72 expected_regex = re.compile(expected_regex) 73 self.expected_regex = expected_regexpatient_caseupdates.py https://github.com/dimagi/carehq.git | Python | 270 lines
57 58 case_id_re = re.compile('<case_id>(?P<case_id>\w+)<\/case_id>') 59 case_id_xml = case_id_re.search(restore_payload.content).group('case_id') 84 85 uid_re = re.compile('<uid>(?P<doc_id>\w+)<\/uid>') 86 submit_doc_id = uid_re.search(xml_body).group('doc_id') 154 155 uid_re = re.compile('<uid>(?P<doc_id>\w+)<\/uid>') 156 submit_doc_id = uid_re.search(xml_body).group('doc_id') 189 phone = phones[n - 1] 190 phone_re = re.compile('<Phone%d>(?P<phone>.*)<\/Phone%d>' % (n, n)) 191 phone_str = phone_re.search(restore_payload.content).group('phone') 193 194 desc_re = re.compile('<Phone%dType>(?P<desc>.*)<\/Phone%dType>' % (n, n)) 195 desc_str = desc_re.search(restore_payload.content).group('desc')ldif.py https://gitlab.com/pmuontains/Odoo | Python | 453 lines
37dn_pattern = rdn_pattern + r'([ ]*,[ ]*' + rdn_pattern + r')*[ ]*' 38dn_regex = re.compile('^%s$' % dn_pattern) 39 66SAFE_STRING_PATTERN = '(^(\000|\n|\r| |:|<)|[\000\n\r\200-\377]+|[ ]+$)' 67safe_string_re = re.compile(SAFE_STRING_PATTERN) 68gcycsbplot.py https://gitlab.com/abushoeb/gc-v1 | Python | 332 lines
53 54 line_re = re.compile(regex, re.I) 55 lines = ycsb_file.split("\n") 130 regex = "ops/sec;" 131 line_re = re.compile(regex, re.I) 132 lines = ycsb_file.split("\n")resources.py https://bitbucket.org/pcraven/pygame2.git | Python | 318 lines
301 if excludepattern: 302 match = re.compile(excludepattern).match 303 join = os.path.joinlatex_lexer.py https://bitbucket.org/chiamingyen/mdecourse.git | Python | 322 lines
84 # regular expression used for matching 85 self.regexp = re.compile( 86 b"|".join(document.py https://gitlab.com/orvi2014/rcs-db-ext | Python | 275 lines
14# re from pep263 - but we use it both on bytes and strings. 15re_encoding_bytes = re.compile("coding[:=]\s*([-\w.]+)".encode("ascii")) 16re_encoding_text = re.compile("coding[:=]\s*([-\w.]+)")todo.py https://bitbucket.org/javierbuilder/gmate.git | Python | 383 lines
35 # Configs read regular expression 36 cfg_rx = re.compile(r"(ALLOWED_EXTENSIONS|SKIPED_DIRS|KNOWN_MARKS|SKIPED_FILES|SHOW_EMPTY_MARKS|REQUIRE_COLON|MARK_COLORS)=+(.*?)$") 37 60 # Initial Setup 61 allowed_types = re.compile(r'.*\.\b(%s)\b$' % allowed_extensions_regex) 62 skiped_dirs = re.compile(r'.*(%s)$' % skiped_dirs_regex) 64 if configs["REQUIRE_COLON"] == "1": 65 known_marks = re.compile(r'\b(%s)\b\s?: +(.*?)$' % known_marks_regex) 66 else: 66 else: 67 known_marks = re.compile(r'\b(%s)\b\s?:? +(.*?)$' % known_marks_regex) 68 skiped_files = re.compile(r"("+skiped_files_regex+")$") 77 def escape(str_): 78 lt = re.compile(r'<') 79 gt = re.compile(r'>')