aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mesonbuild/interpreter.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py
index 3044d51..8c6e2cd 100644
--- a/mesonbuild/interpreter.py
+++ b/mesonbuild/interpreter.py
@@ -27,7 +27,6 @@ import os, sys, subprocess, shutil, uuid, re
from functools import wraps
import importlib
-import copy
run_depr_printed = False
@@ -189,7 +188,6 @@ class EnvironmentVariablesHolder(InterpreterObject):
self.methods.update({'set': self.set_method,
'append': self.append_method,
'prepend' : self.prepend_method,
- 'copy' : self.copy_method,
})
@stringArgs
@@ -212,9 +210,6 @@ class EnvironmentVariablesHolder(InterpreterObject):
def prepend_method(self, args, kwargs):
self.add_var(self.held_object.prepend, args, kwargs)
- def copy_method(self, args, kwargs):
- return copy.deepcopy(self)
-
class ConfigurationDataHolder(InterpreterObject):
def __init__(self):