Skip to content

Commit

Permalink
py2.7 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
wimglenn committed Jun 11, 2024
1 parent 82a42e9 commit 3698ea8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,11 +476,11 @@ def _match_re(self):

@property
def named_fields(self):
return self._named_fields.copy()
return self._named_fields[:]

@property
def fixed_fields(self):
return self._fixed_fields.copy()
return self._fixed_fields[:]

@property
def format(self):
Expand Down

0 comments on commit 3698ea8

Please sign in to comment.