Ignore new gerber attributes from RS-274X rev. J3

This commit is contained in:
Paulo Henrique Silva 2016-01-18 21:14:45 +03:00 committed by olegart
parent 6599b96fe4
commit 7726c0cc3c
1 changed files with 5 additions and 0 deletions

View File

@ -68,6 +68,11 @@ IgnoreList = ( \
re.compile(r'^\*?%$'),
re.compile(r'^M0?2\*$'),
# new Gerber Attributes
re.compile(r'^%TF.*\*%'),
re.compile(r'^%TA.*\*%'),
re.compile(r'^%TD.*\*%'),
# These additional ones are for Orcad Layout, PCB, Protel, etc.
re.compile(r'\*'), # Empty statement
re.compile(r'^%IN.*\*%'),