mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
19 lines
235 B
Python
19 lines
235 B
Python
"""Skeleton for 'copy' stdlib module."""
|
|
|
|
|
|
def copy(x):
|
|
"""Return a shallow copy of x.
|
|
|
|
:type x: T
|
|
:rtype: T
|
|
"""
|
|
pass
|
|
|
|
|
|
def deepcopy(x):
|
|
"""Return a deep copy of x.
|
|
|
|
:type x: T
|
|
:rtype: T
|
|
"""
|
|
pass |