PageRenderTime 2112ms queryTime 1020ms sortTime 89ms getByIdsTime 217ms findMatchingLines 142ms

100+ results results for 're.compile repo:MichaelBlume/pypy' (2112 ms)

Not the results you expected?
flp.py https://bitbucket.org/__wp__/mb-linux-msli.git | Python | 451 lines
                    
271import re
                    
272prog = re.compile('^([^:]*): *(.*)')
                    
273
                    
                
scanner.py https://gitlab.com/dj-tech/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
                    
                
ReconcileWorkingCopyOperation.java https://gitlab.com/unofficial-mirrors/eclipse-che | Java | 287 lines
                    
21import org.eclipse.jdt.core.WorkingCopyOwner;
                    
22import org.eclipse.jdt.core.compiler.CategorizedProblem;
                    
23import org.eclipse.jdt.core.dom.CheAST;
                    
                
_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 = namespace
                    
                
SourceIndexerRequestor.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 419 lines
                    
13import org.eclipse.jdt.core.Signature;
                    
14import org.eclipse.jdt.core.compiler.*;
                    
15import org.eclipse.jdt.internal.compiler.ExtraFlags;
                    
                
vboxmanage.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_1 | 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'
                    
                
cache.py https://gitlab.com/themill/ftrack-python-api | Python | 579 lines
                    
97        if pattern is not None:
                    
98            pattern = re.compile(pattern)
                    
99
                    
                
controller.py https://gitlab.com/phongphans61/machine-learning-tictactoe | Python | 376 lines
                    
17
                    
18URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?")
                    
19
                    
                
docscrape.py https://github.com/kurtosis/scikit-learn.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_str
                    
                
etree.py https://gitlab.com/phongphans61/machine-learning-tictactoe | Python | 343 lines
                    
15
                    
16tag_regexp = re.compile("{([^}]*)}(.*)")
                    
17
                    
                
win_tool.py https://gitlab.com/boxnia/NFU_MOVIL | Python | 314 lines
                    
23# link.exe.
                    
24_LINK_EXE_OUT_ARG = re.compile('/OUT:(?P<out>.+)$', re.IGNORECASE)
                    
25
                    
                
html2text.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):
                    
                
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>')
                    
50
                    
                
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|&nbsp;?)*){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+)')
                    
110
                    
                
Checker.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 True
                    
                
metadata.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]")
                    
141
                    
                
DSSP.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 346 lines
                    
38# Match C in DSSP
                    
39_dssp_cys=re.compile('[a-z]')
                    
40
                    
                
setup_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_]+)')
                    
60
                    
                
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 path4
                    
                
test_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:
                    
                
CompilationUnitProblemFinder.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 260 lines
                    
18import org.aspectj.org.eclipse.jdt.core.*;
                    
19import org.aspectj.org.eclipse.jdt.core.compiler.CategorizedProblem;
                    
20import org.aspectj.org.eclipse.jdt.internal.compiler.*;
                    
                
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),
                    
207
                    
                
dnsproxy.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
                    
33
                    
                
js2c.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])
                    
                
download.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+))?')
                    
38
                    
                
VariablesEvaluator.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 306 lines
                    
14
                    
15import org.eclipse.jdt.core.compiler.*;
                    
16import org.eclipse.jdt.internal.compiler.ClassFile;
                    
                
manifest.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 = {
                    
                
SourceMethod.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 324 lines
                    
13import org.eclipse.jdt.core.*;
                    
14import org.eclipse.jdt.core.compiler.CharOperation;
                    
15import org.eclipse.jdt.internal.compiler.lookup.Binding;
                    
                
xunit.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'^(.*?)(\(.*\))$')
                    
58
                    
                
csrf.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)
                    
20
                    
                
version.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"[\._-]")
                    
365
                    
                
config.py https://gitlab.com/pooja043/Globus_Docker_4 | Python | 284 lines
                    
21
                    
22nonascii_re = re.compile(b(r'[\x80-\xff]'))
                    
23
                    
                
BinaryMember.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 179 lines
                    
20import org.eclipse.jdt.core.JavaModelException;
                    
21import org.eclipse.jdt.core.compiler.CharOperation;
                    
22import org.eclipse.jdt.internal.compiler.env.IBinaryAnnotation;
                    
                
JarPackageFragmentRoot.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 308 lines
                    
21import org.aspectj.org.eclipse.jdt.core.*;
                    
22import org.aspectj.org.eclipse.jdt.core.compiler.CharOperation;
                    
23import org.aspectj.org.eclipse.jdt.internal.core.util.HashtableOfArrayToObject;
                    
238		for (int i = existingLength; i < length; i++) {
                    
239			if (Util.isValidFolderNameForPackage(pkgName[i], project.getOption(JavaCore.COMPILER_SOURCE, true), project.getOption(JavaCore.COMPILER_COMPLIANCE, true))) {
                    
240				System.arraycopy(existing, 0, existing = new String[i+1], 0, i);
                    
                
egg_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 = {}
                    
                
JavaSearchPattern.java https://github.com/vazexqi/CodingSpectator.git | Java | 452 lines
                    
19import org.eclipse.jdt.core.Signature;
                    
20import org.eclipse.jdt.core.compiler.CharOperation;
                    
21import org.eclipse.jdt.core.search.IJavaSearchConstants;
                    
                
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)
                    
                
CUPositionCompletionProcessor.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 266 lines
                    
37import org.eclipse.jdt.core.WorkingCopyOwner;
                    
38import org.eclipse.jdt.core.compiler.IProblem;
                    
39
                    
                
printing.py https://gitlab.com/UBERTC/arm-eabi-6.0-old | Python | 285 lines
                    
174            self.gen_printer = gen_printer
                    
175            self.compiled_re = re.compile(regexp)
                    
176
                    
                
colorizer.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)
                    
                
CreatePackageFragmentOperation.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 157 lines
                    
27import org.aspectj.org.eclipse.jdt.core.JavaModelException;
                    
28import org.aspectj.org.eclipse.jdt.core.compiler.CharOperation;
                    
29import org.aspectj.org.eclipse.jdt.internal.core.util.Messages;
                    
134	IJavaProject project = parentElement.getJavaProject();
                    
135	if (this.pkgName == null || (this.pkgName.length > 0 && JavaConventions.validatePackageName(packageName, project.getOption(JavaCore.COMPILER_SOURCE, true), project.getOption(JavaCore.COMPILER_COMPLIANCE, true)).getSeverity() == IStatus.ERROR)) {
                    
136		return new JavaModelStatus(IJavaModelStatusConstants.INVALID_NAME, packageName);
                    
                
models.py https://github.com/guetux/feincms.git | Python | 399 lines
                    
133
                    
134APPLICATIONCONTENT_RE = re.compile(r'^([^/]+)/([^/]+)$')
                    
135
                    
                
base.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
                    
29
                    
                
ReferenceCollection.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 252 lines
                    
13
                    
14import org.aspectj.org.eclipse.jdt.core.compiler.CharOperation;
                    
15import org.aspectj.org.eclipse.jdt.internal.compiler.lookup.TypeConstants;
                    
                
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\{\\#([^}]+)\}').sub
                    
                
ImImagePlugin.py https://gitlab.com/abhi1tb/build | Python | 377 lines
                    
103
                    
104split = re.compile(br"^([A-Za-z][^:]*):[ \t]*(.*)[ \t]*$")
                    
105
                    
                
SBTypeCategory.i https://gitlab.com/jorjpimm/lldb | Swig | 237 lines
                    
126                    self.get_by_name_function = get_by_name_function
                    
127                    self.regex_type = type(re.compile('.'))
                    
128
                    
                
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-luhn | 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:
                    
                
CompletionRequestor.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 358 lines
                    
12
                    
13import org.eclipse.jdt.core.compiler.IProblem;
                    
14
                    
                
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)
                    
                
test_filelist.py https://gitlab.com/unofficial-mirrors/cpython | Python | 340 lines
                    
139        # is a regex
                    
140        regex = re.compile('a')
                    
141        self.assertEqual(
                    
                
ElementPath.py https://gitlab.com/envieidoc/Clover | Python | 303 lines
                    
60
                    
61xpath_tokenizer_re = re.compile(
                    
62    "("
                    
                
models.py https://github.com/LittleForker/django-minishop.git | Python | 317 lines
                    
26
                    
27SHA1_RE = re.compile('^[a-f0-9]{40}$')
                    
28
                    
                
base.py https://github.com/niran/django-old.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})')
                    
63
                    
                
operations.py https://github.com/adamn/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')])
                    
                
ClassFileMatchLocator.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 279 lines
                    
14import org.aspectj.org.eclipse.jdt.core.*;
                    
15import org.aspectj.org.eclipse.jdt.core.compiler.CharOperation;
                    
16import org.aspectj.org.eclipse.jdt.core.search.*;
                    
                
ProblemHover.java https://github.com/vazexqi/CodingSpectator.git | Java | 304 lines
                    
47import org.eclipse.jdt.core.JavaCore;
                    
48import org.eclipse.jdt.core.compiler.IProblem;
                    
49
                    
                
PRESUBMIT.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)
                    
68
                    
                
apiclient-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)
                    
                
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'
                    
                
SourceMethod.java https://github.com/vazexqi/CodingSpectator.git | Java | 349 lines
                    
20import org.eclipse.jdt.core.Signature;
                    
21import org.eclipse.jdt.core.compiler.CharOperation;
                    
22import org.eclipse.jdt.internal.compiler.lookup.Binding;
                    
                
core.py https://gitlab.com/Mirros/XX-net | Python | 387 lines
                    
9_alabel_prefix = b'xn--'
                    
10_unicode_dots_re = re.compile(u'[\u002e\u3002\uff0e\uff61]')
                    
11
                    
                
quoprimime.py https://gitlab.com/Kissaki/Omni-Bot-0.8 | Python | 336 lines
                    
56
                    
57hqre = re.compile(r'[^-a-zA-Z0-9!*+/ ]')
                    
58bqre = re.compile(r'[^ !-<>-~\t]')
                    
                
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>')
                    
                
CompletionRequestor.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 305 lines
                    
12
                    
13import org.aspectj.org.eclipse.jdt.core.compiler.IProblem;
                    
14
                    
                
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=')):
                    
303
                    
                
utils.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_regex
                    
                
patient_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)
                    
68
                    
                
gcycsbplot.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")
                    
                
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.]+)")
                    
                
tmxr200x.py https://gitlab.com/jmlorenzi/ase | Python | 254 lines
                    
82        # http://stackoverflow.com/questions/647655/python-regex-split-and-special-character
                    
83        table = re.compile('(:.*:)').split(table)
                    
84        # remove empty elements
                    
                
StatementAnalyzer.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 277 lines
                    
25import org.eclipse.jdt.core.SourceRange;
                    
26import org.eclipse.jdt.core.compiler.IScanner;
                    
27import org.eclipse.jdt.core.dom.ASTNode;
                    
                
hostfighttube.py https://gitlab.com/mustinet/iptvplayer-for-e2 | Python | 338 lines
                    
94            return
                    
95        match = re.compile("<a href='([^']+?)' class='level0'[^>]+?>([^<]+?)</a>").findall(data)
                    
96        if len(match) > 0:
                    
                
introspection.py https://gitlab.com/areema/myproject | Python | 273 lines
                    
7
                    
8field_size_re = re.compile(r'^\s*(?:var)?char\s*\(\s*(\d+)\s*\)\s*$')
                    
9FieldInfo = namedtuple('FieldInfo', FieldInfo._fields + ('default',))
                    
                
mail_global.py https://gitlab.com/yaojian/RenjuAI | Python | 295 lines
                    
55    def __register_regex(self):
                    
56        self.email_reg = re.compile('[^@|\s]+@[^@]+\.[^@|\s]+')
                    
57        self.email_reg_2 = re.compile(u"[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-.]+)+")
                    
57        self.email_reg_2 = re.compile(u"[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-.]+)+")
                    
58        self.email_addr_ignore = re.compile(u'undisclosed-recipients|Mail Delivery Subsystem|Mail Delivery System',
                    
59                                            flags=re.IGNORECASE)
                    
59                                            flags=re.IGNORECASE)
                    
60        self.email_html_br_tag = re.compile(u"<br.*?>|<p.*?>", flags=re.IGNORECASE | re.DOTALL)
                    
61        self.email_html_tag = re.compile(u'<style.*?style>|<script.*?script>|<.*?>|[\r\t]{2,}|&nbsp;', flags=re.IGNORECASE | re.DOTALL)
                    
62
                    
63        self.url_reg = re.compile('http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+')
                    
64        self.unicode_reg = re.compile(
                    
73        """
                    
74        self.time_standard = re.compile(u'^\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}$')
                    
75        self.time_reg_map = {u'凌晨': 'AM', u'上午': 'AM', u'中午': 'PM', u'下午': 'PM', u'晚上': 'PM',
                    
                
latex.py https://github.com/jcrobak/hue.git | Python | 457 lines
                    
14
                    
15escapingRE = re.compile(r'([\[\]#$%&_{}^~\\])')
                    
16lowerUpperRE = re.compile(r'([a-z])([A-Z])')
                    
                
str_format.py https://github.com/dequis/wakarimasen.git | Python | 353 lines
                    
7
                    
8CONTROL_CHARS_RE = re.compile('[\x00-\x08\x0b\x0c\x0e-\x1f]')
                    
9ENTITIES_CLEAN_RE = re.compile('&(#([0-9]+);|#x([0-9a-fA-F]+);|)')
                    
45
                    
46ENTITIES_DECODE_RE = re.compile('(&#([0-9]*)([;&])|&#([x&])([0-9a-f]*)([;&]))', re.I)
                    
47
                    
103    # Escape metacharacters and match with \\1, \\2, etc.
                    
104    key = re.compile(r'\\\\\d+').sub(r'(.*?)', re.escape(key))
                    
105
                    
107    # string (likely still in order).
                    
108    value = re.compile(key).sub(value, original_key)
                    
109    append[re.compile(key)] = value
                    
130FC_HIDE_POSTLINKS = [
                    
131    (re.compile('&gt;&gt;&gt;/?([0-9a-zA-Z]+)/?&gt;&gt;([0-9]+)'),
                    
132     r'&gt&gt&gt;/\1/&gt&gt;\2'),
                    
                
warnings.py https://gitlab.com/envieidoc/Clover | Python | 404 lines
                    
70           "lineno must be an int >= 0"
                    
71    item = (action, re.compile(message, re.I), category,
                    
72            re.compile(module), lineno)
                    
                
dispatch.py https://gitlab.com/brian0218/rk3066_r-box_android4.2.2_sdk | Python | 387 lines
                    
46
                    
47_SOURCE_PATH_PATTERN = re.compile(r'(?i)_wsh\.py$')
                    
48_SOURCE_SUFFIX = '_wsh.py'
                    
                
http.py https://gitlab.com/mayakarya/django | Python | 385 lines
                    
21
                    
22ETAG_MATCH = re.compile(r'(?:W/)?"((?:\\.|[^"])*)"')
                    
23
                    
30__T = r'(?P<hour>\d{2}):(?P<min>\d{2}):(?P<sec>\d{2})'
                    
31RFC1123_DATE = re.compile(r'^\w{3}, %s %s %s %s GMT$' % (__D, __M, __Y, __T))
                    
32RFC850_DATE = re.compile(r'^\w{6,9}, %s-%s-%s %s GMT$' % (__D, __M, __Y2, __T))
                    
32RFC850_DATE = re.compile(r'^\w{6,9}, %s-%s-%s %s GMT$' % (__D, __M, __Y2, __T))
                    
33ASCTIME_DATE = re.compile(r'^\w{3} %s %s %s %s$' % (__M, __D2, __T, __Y))
                    
34
                    
37
                    
38FIELDS_MATCH = re.compile('[&;]')
                    
39
                    
                
automarkup.py https://gitlab.com/pachecof/centos-stream-9 | 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)')
                    
55
                    
                
expander.py https://gitlab.com/manoj-makkuboy/magnetism | Python | 204 lines
                    
79        
                    
80        subst = re.compile("@@((?:[a-zA-Z_][a-zA-Z_0-9]*\\.)?[a-zA-Z_][a-zA-Z0-9_]*)(?::(properties|xml))?@@")
                    
81
                    
81
                    
82        xmlMatch = re.compile("[<&'\"]")
                    
83        def xmlEscape(m):
                    
93
                    
94        propertiesMatch = re.compile(r"[^ -~]")
                    
95        def propertiesEscape(m):
                    
                
operations.py https://gitlab.com/benji-bou/urotechchallenge-Serenity | Python | 273 lines
                    
46        masks = 'TOUCH|OVERLAPBDYDISJOINT|OVERLAPBDYINTERSECT|EQUAL|INSIDE|COVEREDBY|CONTAINS|COVERS|ANYINTERACT|ON'
                    
47        mask_regex = re.compile(r'^(%s)(\+(%s))*$' % (masks, masks), re.I)
                    
48        if not isinstance(arg, six.string_types) or not mask_regex.match(arg):
                    
                
lisa.py https://github.com/mellterm/translate.git | Python | 372 lines
                    
48                '(%[0-9]$lx)', '(%[0-9]\$[a-z])', '(<.+?>)']
                    
49re_placeholders = [re.compile(ph) for ph in placeholders]
                    
50def _getPhMatches(text):
                    
                
d.py https://github.com/ekg/node.git | Python | 532 lines
                    
120
                    
121		self.re_module = re.compile("module\s+([^;]+)")
                    
122		self.re_import = re.compile("import\s+([^;]+)")
                    
122		self.re_import = re.compile("import\s+([^;]+)")
                    
123		self.re_import_bindings = re.compile("([^:]+):(.*)")
                    
124		self.re_import_alias = re.compile("[^=]+=(.+)")
                    
                
wininst2wheel.py https://gitlab.com/areema/myproject | Python | 187 lines
                    
14
                    
15egg_info_re = re.compile(r'''(^|/)(?P<name>[^/]+?)-(?P<ver>.+?)
                    
16    (-(?P<pyver>.+?))?(-(?P<arch>.+?))?.egg-info(/|$)''', re.VERBOSE)
                    
                
ReconcileWorkingCopyOperation.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 275 lines
                    
20import org.eclipse.jdt.core.*;
                    
21import org.eclipse.jdt.core.compiler.CategorizedProblem;
                    
22import org.eclipse.jdt.core.compiler.CompilationParticipant;
                    
22import org.eclipse.jdt.core.compiler.CompilationParticipant;
                    
23import org.eclipse.jdt.core.compiler.ReconcileContext;
                    
24import org.eclipse.jdt.core.dom.AST;
                    
                
teepty.py https://gitlab.com/vectorci/gitsome | Python | 331 lines
                    
29
                    
30RE_HIDDEN = re.compile(b'(\001.*?\002)')
                    
31RE_COLOR = re.compile(b'\033\[\d+;?\d*m')
                    
                
transformations.py https://gitlab.com/oytunistrator/snowscript | Python | 353 lines
                    
343
                    
344_newline_pattern = re.compile(r"\n")
                    
345
                    
                
__init__.py https://gitlab.com/mkerfoot/home-assistant | Python | 415 lines
                    
21
                    
22RE_SANITIZE_FILENAME = re.compile(r'(~|\.\.|/|\\)')
                    
23RE_SANITIZE_PATH = re.compile(r'(~|\.(\.)+)')
                    
23RE_SANITIZE_PATH = re.compile(r'(~|\.(\.)+)')
                    
24RE_SLUGIFY = re.compile(r'[^a-z0-9_]+')
                    
25
                    
                
rvm.py https://gitlab.com/ricardo.hernandez/salt | Python | 458 lines
                    
172    if output:
                    
173        regex = re.compile(r'^[= ]([*> ]) ([^- ]+)-([^ ]+) \[ (.*) \]')
                    
174        for line in output.splitlines():
                    
315    if output:
                    
316        regex = re.compile('^   ([^ ]+)')
                    
317        for line in output.splitlines():
                    
416    if output:
                    
417        gems_regex = re.compile('^   ([^ ]+)')
                    
418        gemset_regex = re.compile('^gemsets for ([^ ]+)')
                    
                
 

Source

Language