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 14e73a7 commit e3e542aCopy full SHA for e3e542a
amaranth/vendor/xilinx.py
@@ -347,9 +347,9 @@ def vendor_toolchain(self):
347
@property
348
def _symbiflow_part(self):
349
# drop the trailing speed grade letter(s), if any
350
- part = re.sub("[^\d]+$", "", self._part)
+ part = re.sub(r"[^\d]+$", "", self._part)
351
# drop temp/speed grade letters after family name, if any
352
- part = re.sub("(.{4}\d+t)[il]", r"\1", part)
+ part = re.sub(r"(.{4}\d+t)[il]", r"\1", part)
353
return part
354
355
# bitstream device name according to prjxray-db path
0 commit comments