Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
snap /
gnome-42-2204 /
226 /
usr /
lib /
python3.10 /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
libregrtest
[ DIR ]
drwxr-xr-x
support
[ DIR ]
drwxr-xr-x
ann_module2.py
519
B
-rw-r--r--
ann_module3.py
448
B
-rw-r--r--
ann_module.py
1.09
KB
-rw-r--r--
__init__.py
47
B
-rw-r--r--
__main__.py
41
B
-rw-r--r--
regrtest.py
1.27
KB
-rwxr-xr-x
test_support.py
25.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ann_module3.py
""" Correct syntax for variable annotation that should fail at runtime in a certain manner. More examples are in test_grammar and test_parser. """ def f_bad_ann(): __annotations__[1] = 2 class C_OK: def __init__(self, x: int) -> None: self.x: no_such_name = x # This one is OK as proposed by Guido class D_bad_ann: def __init__(self, x: int) -> None: sfel.y: int = 0 def g_bad_ann(): no_such_name.attr: int = 0
Close