diff options
author | Tim Leslie <tim.leslie@gmail.com> | 2006-03-25 11:15:51 +0000 |
---|---|---|
committer | Tim Leslie <tim.leslie@gmail.com> | 2006-03-25 11:15:51 +0000 |
commit | 4921d30b0e08d414b397585d0030958781cb1a56 (patch) | |
tree | cd8519ad42c5450c71e302a1e999df199459e47f /numpy/core/memmap.py | |
parent | 28b7d9fb65da6e36eff3158f77b2a023edf7f733 (diff) | |
download | numpy-4921d30b0e08d414b397585d0030958781cb1a56.tar.gz |
remove unused variable
Diffstat (limited to 'numpy/core/memmap.py')
-rw-r--r-- | numpy/core/memmap.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/core/memmap.py b/numpy/core/memmap.py index 84d64afbe..99020c14d 100644 --- a/numpy/core/memmap.py +++ b/numpy/core/memmap.py @@ -19,8 +19,6 @@ class memmap(ndarray): __array_priority__ = -100.0 def __new__(subtype, name, dtype=uint8, mode='r+', offset=0, shape=None, order=0): - global _globalvar - try: mode = mode_equivalents[mode] except KeyError: |