Changeset 1345 for framspy/frams.py
- Timestamp:
- 08/12/25 03:37:40 (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
framspy/frams.py
r1343 r1345 33 33 """All Framsticks objects and values are instances of this class. Read the documentation of the 'frams' module for more information.""" 34 34 35 _reInsideParens = re.compile( '\((.*)\)')35 _reInsideParens = re.compile(r'\((.*)\)') 36 36 _reservedWords = ['import'] # this list is scanned during every attribute access, only add what is really clashing with Framsticks properties 37 37 _reservedXWords = ['x' + word for word in _reservedWords]
Note: See TracChangeset
for help on using the changeset viewer.