1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
"""This module includes tests for syntax errors that occur when a name declared as `global` is used in ways that violate the language specification, such as after assignment, usage, or annotation. The tests verify that syntax errors are correctly raised for improper `global` statements following variable use or assignment within functions. Additionally, it tests various name-binding scenarios for global variables to ensure correct behavior. See `test_scope.py` for additional related behavioral tests covering variable scoping and usage in different contexts. """ import contextlib from test.support import check_syntax_error from test.support.warnings_helper import check_warnings from types import SimpleNamespace import unittest import warnings class GlobalTests(unittest.TestCase): def setUp(self): self.enterContext(check_warnings()) warnings.filterwarnings("error", module="") ###################################################### ### Syntax error cases as covered in Python/symtable.c ###################################################### def test_name_param(self): prog_text = """\ def fn(name_param): global name_param """ check_syntax_error(self, prog_text, lineno=2, offset=5) def test_name_after_assign(self): prog_text = """\ def fn(): name_assign = 1 global name_assign """ check_syntax_error(self, prog_text, lineno=3, offset=5) def test_name_after_use(self): prog_text = """\ def fn(): print(name_use) global name_use """ check_syntax_error(self, prog_text, lineno=3, offset=5) def test_name_annot(self): prog_text_3 = """\ def fn(): name_annot: int global name_annot """ check_syntax_error(self, prog_text_3, lineno=3, offset=5) ############################################################# ### Tests for global variables across all name binding cases, ### as described in executionmodel.rst ############################################################# def test_assignment_statement(self): global name_assignment_statement value = object() name_assignment_statement = value self.assertIs(globals()["name_assignment_statement"], value) del name_assignment_statement def test_unpacking_assignment(self): global name_unpacking_assignment value = object() _, name_unpacking_assignment = [None, value] self.assertIs(globals()["name_unpacking_assignment"], value) del name_unpacking_assignment def test_assignment_expression(self): global name_assignment_expression value = object() if name_assignment_expression := value: pass self.assertIs(globals()["name_assignment_expression"], value) del name_assignment_expression def test_iteration_variable(self): global name_iteration_variable value = object() for name_iteration_variable in [value]: pass self.assertIs(globals()["name_iteration_variable"], value) del name_iteration_variable def test_func_def(self): global name_func_def def name_func_def(): pass value = name_func_def self.assertIs(globals()["name_func_def"], value) del name_func_def def test_class_def(self): global name_class_def class name_class_def: pass value = name_class_def self.assertIs(globals()["name_class_def"], value) del name_class_def def test_type_alias(self): global name_type_alias type name_type_alias = tuple[int, int] value = name_type_alias self.assertIs(globals()["name_type_alias"], value) del name_type_alias def test_caught_exception(self): global name_caught_exc try: 1 / 0 except ZeroDivisionError as name_caught_exc: value = name_caught_exc # `name_caught_exc` is cleared automatically after the except block self.assertIs(globals()["name_caught_exc"], value) def test_caught_exception_group(self): global name_caught_exc_group try: try: 1 / 0 except ZeroDivisionError as exc: raise ExceptionGroup("eg", [exc]) except* ZeroDivisionError as name_caught_exc_group: value = name_caught_exc_group # `name_caught_exc` is cleared automatically after the except block self.assertIs(globals()["name_caught_exc_group"], value) def test_enter_result(self): global name_enter_result value = object() with contextlib.nullcontext(value) as name_enter_result: pass self.assertIs(globals()["name_enter_result"], value) del name_enter_result def test_import_result(self): global name_import_result value = contextlib import contextlib as name_import_result self.assertIs(globals()["name_import_result"], value) del name_import_result def test_match(self): global name_match value = object() match value: case name_match: pass self.assertIs(globals()["name_match"], value) del name_match def test_match_as(self): global name_match_as value = object() match value: case _ as name_match_as: pass self.assertIs(globals()["name_match_as"], value) del name_match_as def test_match_seq(self): global name_match_seq value = object() match (None, value): case (_, name_match_seq): pass self.assertIs(globals()["name_match_seq"], value) del name_match_seq def test_match_map(self): global name_match_map value = object() match {"key": value}: case {"key": name_match_map}: pass self.assertIs(globals()["name_match_map"], value) del name_match_map def test_match_attr(self): global name_match_attr value = object() match SimpleNamespace(key=value): case SimpleNamespace(key=name_match_attr): pass self.assertIs(globals()["name_match_attr"], value) del name_match_attr def setUpModule(): unittest.enterModuleContext(warnings.catch_warnings()) warnings.filterwarnings("error", module="") if __name__ == "__main__": unittest.main()