PATH: //opt/cloudlinux/venv/lib64/python3.11/site-packages/libpasteurize/fixes
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 feature_base.py
↓
X
📄 fix_add_all__future__imports.py
↓
X
📄 fix_add_all_future_builtins.py
↓
X
📄 fix_add_future_standard_library_import.py
↓
X
📄 fix_annotations.py
↓
X
📄 fix_division.py
↓
X
📄 fix_features.py
↓
X
📄 fix_fullargspec.py
↓
X
📄 fix_future_builtins.py
↓
X
📄 fix_getcwd.py
↓
X
📄 fix_imports.py
↓
X
📄 fix_imports2.py
↓
X
📄 fix_kwargs.py
↓
X
📄 fix_memoryview.py
↓
X
📄 fix_metaclass.py
↓
X
📄 fix_newstyle.py
↓
X
📄 fix_next.py
↓
X
📄 fix_printfunction.py
↓
X
📄 fix_raise.py
↓
X
📄 fix_raise_.py
↓
X
📄 fix_throw.py
↓
X
📄 fix_unpacking.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: fix_fullargspec.py
u""" Fixer for getfullargspec -> getargspec """ from lib2to3 import fixer_base from lib2to3.fixer_util import Name warn_msg = u"some of the values returned by getfullargspec are not valid in Python 2 and have no equivalent." class FixFullargspec(fixer_base.BaseFix): PATTERN = u"'getfullargspec'" def transform(self, node, results): self.warning(node, warn_msg) return Name(u"getargspec", prefix=node.prefix)
SIMPAN PERUBAHAN