Changeset 1345 for framspy/frams.py


Ignore:
Timestamp:
08/12/25 03:37:40 (3 weeks ago)
Author:
Maciej Komosinski
Message:

Fixed the escape sequence

File:
1 edited

Legend:

Unmodified
Added
Removed
  • framspy/frams.py

    r1343 r1345  
    3333        """All Framsticks objects and values are instances of this class. Read the documentation of the 'frams' module for more information."""
    3434
    35         _reInsideParens = re.compile('\((.*)\)')
     35        _reInsideParens = re.compile(r'\((.*)\)')
    3636        _reservedWords = ['import']  # this list is scanned during every attribute access, only add what is really clashing with Framsticks properties
    3737        _reservedXWords = ['x' + word for word in _reservedWords]
Note: See TracChangeset for help on using the changeset viewer.