mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-09-02 11:08:01 +02:00
Add layer-purpose GDS support. Various PEP8 fixes.
This commit is contained in:
+6
-6
@@ -27,9 +27,9 @@ def check(check, str):
|
||||
os.path.basename(filename), line_number, str))
|
||||
|
||||
if globals.OPTS.debug_level > 0:
|
||||
import pdb; pdb.set_trace()
|
||||
else:
|
||||
assert 0
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
assert 0
|
||||
|
||||
|
||||
def error(str, return_value=0):
|
||||
@@ -41,9 +41,9 @@ def error(str, return_value=0):
|
||||
os.path.basename(filename), line_number, str))
|
||||
|
||||
if globals.OPTS.debug_level > 0:
|
||||
import pdb; pdb.set_trace()
|
||||
else:
|
||||
assert return_value == 0
|
||||
import pdb
|
||||
pdb.set_trace()
|
||||
assert return_value == 0
|
||||
|
||||
|
||||
def warning(str):
|
||||
|
||||
Reference in New Issue
Block a user