Skip to content
Snippets Groups Projects
Commit e01bdf24 authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Define __copy__ and __deepcopy__ as identity functions on...

Define __copy__ and __deepcopy__ as identity functions on DomainSpecificString, so that copy.deepcopy() will work on them
parent 9c0e5704
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,14 @@ class DomainSpecificString(
def __iter__(self):
raise ValueError("Attempted to iterate a %s" % (type(self).__name__))
# Because this class is a namedtuple of strings and booleans, it is deeply
# immutable.
def __copy__(self):
return self
def __deepcopy__(self, memo):
return self
@classmethod
def from_string(cls, s, hs):
"""Parse the string given by 's' into a structure object."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment