Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.218.108.184
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
python3.6 /
lib2to3 /
fixes /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-01-26 14:47
__init__.py
47
B
-rw-r--r--
2018-12-23 21:37
fix_apply.py
2.37
KB
-rw-r--r--
2018-12-23 21:37
fix_asserts.py
984
B
-rw-r--r--
2018-12-23 21:37
fix_basestring.py
320
B
-rw-r--r--
2018-12-23 21:37
fix_buffer.py
590
B
-rw-r--r--
2018-12-23 21:37
fix_dict.py
3.67
KB
-rw-r--r--
2018-12-23 21:37
fix_except.py
3.27
KB
-rw-r--r--
2018-12-23 21:37
fix_exec.py
979
B
-rw-r--r--
2018-12-23 21:37
fix_execfile.py
2
KB
-rw-r--r--
2018-12-23 21:37
fix_exitfunc.py
2.44
KB
-rw-r--r--
2018-12-23 21:37
fix_filter.py
2.59
KB
-rw-r--r--
2018-12-23 21:37
fix_funcattrs.py
644
B
-rw-r--r--
2018-12-23 21:37
fix_future.py
547
B
-rw-r--r--
2018-12-23 21:37
fix_getcwdu.py
451
B
-rw-r--r--
2018-12-23 21:37
fix_has_key.py
3.12
KB
-rw-r--r--
2018-12-23 21:37
fix_idioms.py
4.76
KB
-rw-r--r--
2018-12-23 21:37
fix_import.py
3.18
KB
-rw-r--r--
2018-12-23 21:37
fix_imports.py
5.55
KB
-rw-r--r--
2018-12-23 21:37
fix_imports2.py
289
B
-rw-r--r--
2018-12-23 21:37
fix_input.py
708
B
-rw-r--r--
2018-12-23 21:37
fix_intern.py
1.21
KB
-rw-r--r--
2018-12-23 21:37
fix_isinstance.py
1.57
KB
-rw-r--r--
2018-12-23 21:37
fix_itertools.py
1.51
KB
-rw-r--r--
2018-12-23 21:37
fix_itertools_imports.py
2.04
KB
-rw-r--r--
2018-12-23 21:37
fix_long.py
476
B
-rw-r--r--
2018-12-23 21:37
fix_map.py
3.55
KB
-rw-r--r--
2018-12-23 21:37
fix_metaclass.py
8
KB
-rw-r--r--
2018-12-23 21:37
fix_methodattrs.py
606
B
-rw-r--r--
2018-12-23 21:37
fix_ne.py
571
B
-rw-r--r--
2018-12-23 21:37
fix_next.py
3.1
KB
-rw-r--r--
2018-12-23 21:37
fix_nonzero.py
591
B
-rw-r--r--
2018-12-23 21:37
fix_numliterals.py
768
B
-rw-r--r--
2018-12-23 21:37
fix_operator.py
3.39
KB
-rw-r--r--
2018-12-23 21:37
fix_paren.py
1.2
KB
-rw-r--r--
2018-12-23 21:37
fix_print.py
2.78
KB
-rw-r--r--
2018-12-23 21:37
fix_raise.py
2.86
KB
-rw-r--r--
2018-12-23 21:37
fix_raw_input.py
454
B
-rw-r--r--
2018-12-23 21:37
fix_reduce.py
837
B
-rw-r--r--
2018-12-23 21:37
fix_reload.py
1.13
KB
-rw-r--r--
2018-12-23 21:37
fix_renames.py
2.17
KB
-rw-r--r--
2018-12-23 21:37
fix_repr.py
613
B
-rw-r--r--
2018-12-23 21:37
fix_set_literal.py
1.66
KB
-rw-r--r--
2018-12-23 21:37
fix_standarderror.py
449
B
-rw-r--r--
2018-12-23 21:37
fix_sys_exc.py
1.01
KB
-rw-r--r--
2018-12-23 21:37
fix_throw.py
1.54
KB
-rw-r--r--
2018-12-23 21:37
fix_tuple_params.py
5.43
KB
-rw-r--r--
2018-12-23 21:37
fix_types.py
1.73
KB
-rw-r--r--
2018-12-23 21:37
fix_unicode.py
1.23
KB
-rw-r--r--
2018-12-23 21:37
fix_urllib.py
8.16
KB
-rw-r--r--
2018-12-23 21:37
fix_ws_comma.py
1.06
KB
-rw-r--r--
2018-12-23 21:37
fix_xrange.py
2.63
KB
-rw-r--r--
2018-12-23 21:37
fix_xreadlines.py
689
B
-rw-r--r--
2018-12-23 21:37
fix_zip.py
1.26
KB
-rw-r--r--
2018-12-23 21:37
Save
Rename
# Copyright 2008 Armin Ronacher. # Licensed to PSF under a Contributor Agreement. """Fixer that cleans up a tuple argument to isinstance after the tokens in it were fixed. This is mainly used to remove double occurrences of tokens as a leftover of the long -> int / unicode -> str conversion. eg. isinstance(x, (int, long)) -> isinstance(x, (int, int)) -> isinstance(x, int) """ from .. import fixer_base from ..fixer_util import token class FixIsinstance(fixer_base.BaseFix): BM_compatible = True PATTERN = """ power< 'isinstance' trailer< '(' arglist< any ',' atom< '(' args=testlist_gexp< any+ > ')' > > ')' > > """ run_order = 6 def transform(self, node, results): names_inserted = set() testlist = results["args"] args = testlist.children new_args = [] iterator = enumerate(args) for idx, arg in iterator: if arg.type == token.NAME and arg.value in names_inserted: if idx < len(args) - 1 and args[idx + 1].type == token.COMMA: next(iterator) continue else: new_args.append(arg) if arg.type == token.NAME: names_inserted.add(arg.value) if new_args and new_args[-1].type == token.COMMA: del new_args[-1] if len(new_args) == 1: atom = testlist.parent new_args[0].prefix = atom.prefix atom.replace(new_args[0]) else: args[:] = new_args node.changed()