mirror of https://github.com/exaloop/codon.git
15 lines
242 B
Python
15 lines
242 B
Python
|
# (c) 2022 Exaloop Inc. All rights reserved.
|
||
|
|
||
|
|
||
|
class Error(Exception):
|
||
|
def __init__(self, message: str = ""):
|
||
|
super().__init__("copy.Error", message)
|
||
|
|
||
|
|
||
|
def copy(x):
|
||
|
return x.__copy__()
|
||
|
|
||
|
|
||
|
def deepcopy(x):
|
||
|
return x.__deepcopy__()
|