Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.223.97.46
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.10 /
lib2to3 /
fixes /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-02-16 18:45
__init__.py
47
B
-rw-r--r--
2022-11-02 15:40
fix_apply.py
2.29
KB
-rw-r--r--
2022-11-02 15:40
fix_asserts.py
984
B
-rw-r--r--
2022-11-02 15:40
fix_basestring.py
320
B
-rw-r--r--
2022-11-02 15:40
fix_buffer.py
590
B
-rw-r--r--
2022-11-02 15:40
fix_dict.py
3.67
KB
-rw-r--r--
2022-11-02 15:40
fix_except.py
3.27
KB
-rw-r--r--
2022-11-02 15:40
fix_exec.py
979
B
-rw-r--r--
2022-11-02 15:40
fix_execfile.py
2
KB
-rw-r--r--
2022-11-02 15:40
fix_exitfunc.py
2.44
KB
-rw-r--r--
2022-11-02 15:40
fix_filter.py
2.7
KB
-rw-r--r--
2022-11-02 15:40
fix_funcattrs.py
644
B
-rw-r--r--
2022-11-02 15:40
fix_future.py
547
B
-rw-r--r--
2022-11-02 15:40
fix_getcwdu.py
451
B
-rw-r--r--
2022-11-02 15:40
fix_has_key.py
3.12
KB
-rw-r--r--
2022-11-02 15:40
fix_idioms.py
4.76
KB
-rw-r--r--
2022-11-02 15:40
fix_import.py
3.18
KB
-rw-r--r--
2022-11-02 15:40
fix_imports.py
5.55
KB
-rw-r--r--
2022-11-02 15:40
fix_imports2.py
289
B
-rw-r--r--
2022-11-02 15:40
fix_input.py
708
B
-rw-r--r--
2022-11-02 15:40
fix_intern.py
1.12
KB
-rw-r--r--
2022-11-02 15:40
fix_isinstance.py
1.57
KB
-rw-r--r--
2022-11-02 15:40
fix_itertools.py
1.51
KB
-rw-r--r--
2022-11-02 15:40
fix_itertools_imports.py
2.04
KB
-rw-r--r--
2022-11-02 15:40
fix_long.py
476
B
-rw-r--r--
2022-11-02 15:40
fix_map.py
3.55
KB
-rw-r--r--
2022-11-02 15:40
fix_metaclass.py
8
KB
-rw-r--r--
2022-11-02 15:40
fix_methodattrs.py
606
B
-rw-r--r--
2022-11-02 15:40
fix_ne.py
571
B
-rw-r--r--
2022-11-02 15:40
fix_next.py
3.1
KB
-rw-r--r--
2022-11-02 15:40
fix_nonzero.py
591
B
-rw-r--r--
2022-11-02 15:40
fix_numliterals.py
768
B
-rw-r--r--
2022-11-02 15:40
fix_operator.py
3.35
KB
-rw-r--r--
2022-11-02 15:40
fix_paren.py
1.2
KB
-rw-r--r--
2022-11-02 15:40
fix_print.py
2.78
KB
-rw-r--r--
2022-11-02 15:40
fix_raise.py
2.86
KB
-rw-r--r--
2022-11-02 15:40
fix_raw_input.py
454
B
-rw-r--r--
2022-11-02 15:40
fix_reduce.py
837
B
-rw-r--r--
2022-11-02 15:40
fix_reload.py
1.06
KB
-rw-r--r--
2022-11-02 15:40
fix_renames.py
2.17
KB
-rw-r--r--
2022-11-02 15:40
fix_repr.py
613
B
-rw-r--r--
2022-11-02 15:40
fix_set_literal.py
1.66
KB
-rw-r--r--
2022-11-02 15:40
fix_standarderror.py
449
B
-rw-r--r--
2022-11-02 15:40
fix_sys_exc.py
1.01
KB
-rw-r--r--
2022-11-02 15:40
fix_throw.py
1.54
KB
-rw-r--r--
2022-11-02 15:40
fix_tuple_params.py
5.43
KB
-rw-r--r--
2022-11-02 15:40
fix_types.py
1.73
KB
-rw-r--r--
2022-11-02 15:40
fix_unicode.py
1.23
KB
-rw-r--r--
2022-11-02 15:40
fix_urllib.py
8.17
KB
-rw-r--r--
2022-11-02 15:40
fix_ws_comma.py
1.06
KB
-rw-r--r--
2022-11-02 15:40
fix_xrange.py
2.63
KB
-rw-r--r--
2022-11-02 15:40
fix_xreadlines.py
689
B
-rw-r--r--
2022-11-02 15:40
fix_zip.py
1.26
KB
-rw-r--r--
2022-11-02 15:40
Save
Rename
"""Fixer that changes 'a ,b' into 'a, b'. This also changes '{a :b}' into '{a: b}', but does not touch other uses of colons. It does not touch other uses of whitespace. """ from .. import pytree from ..pgen2 import token from .. import fixer_base class FixWsComma(fixer_base.BaseFix): explicit = True # The user must ask for this fixers PATTERN = """ any<(not(',') any)+ ',' ((not(',') any)+ ',')* [not(',') any]> """ COMMA = pytree.Leaf(token.COMMA, ",") COLON = pytree.Leaf(token.COLON, ":") SEPS = (COMMA, COLON) def transform(self, node, results): new = node.clone() comma = False for child in new.children: if child in self.SEPS: prefix = child.prefix if prefix.isspace() and "\n" not in prefix: child.prefix = "" comma = True else: if comma: prefix = child.prefix if not prefix: child.prefix = " " comma = False return new