We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e61d0 commit 3001300Copy full SHA for 3001300
flow/util/def2stream.py
@@ -47,20 +47,6 @@ def read_cfg():
47
48
#match a line like:
49
# - LAYER M2 + MASK 2 + OPC RECT ( 3000 3000 ) ( 5000 5000 ) ;
50
-#rect_pat = re.compile(r'''
51
-# \s*\-\ LAYER\ (?P<layer>\S+) # The layer name
52
-# (?: # Non-capturing group
53
-# \s+\+\ MASK\ (?P<mask>\d+) # Mask, None if absent
54
-# )?
55
-# (?P<opc> # OPC, None if absent
56
-# \s+\+\ OPC
57
58
-# \s+RECT\
59
-# \(\ (?P<xlo>\d+)\ (?P<ylo>\d+)\ \)\ # rect lower-left pt
60
-# \(\ (?P<xhi>\d+)\ (?P<yhi>\d+)\ \)\ ; # rect upper-right pt
61
- # ''',
62
-# re.VERBOSE)
63
-
64
rect_pat = re.compile(r'''
65
\s*\-\ LAYER\ (?P<layer>\S+) # The layer name
66
(?: # Non-capturing group
0 commit comments