File Explorer

/proc/self/root/proc/self/root/proc/1/root/proc/thread-self/root/lib64/python3.9

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

symbol.py2.2 KB · 123 lines
"""Non-terminal symbols of Python grammar (from "graminit.h").""" #  This file is automatically generated; please don't muck it up!##  To update the symbols in this file, 'cd' to the top directory of#  the python source tree after building the interpreter and run:##    python3 Tools/scripts/generate_symbol_py.py Include/graminit.h Lib/symbol.py## or just##    make regen-symbol import warnings warnings.warn(    "The symbol module is deprecated and will be removed "    "in future versions of Python",    DeprecationWarning,    stacklevel=2,) #--start constants--single_input = 256file_input = 257eval_input = 258decorator = 259decorators = 260decorated = 261async_funcdef = 262funcdef = 263parameters = 264typedargslist = 265tfpdef = 266varargslist = 267vfpdef = 268stmt = 269simple_stmt = 270small_stmt = 271expr_stmt = 272annassign = 273testlist_star_expr = 274augassign = 275del_stmt = 276pass_stmt = 277flow_stmt = 278break_stmt = 279continue_stmt = 280return_stmt = 281yield_stmt = 282raise_stmt = 283import_stmt = 284import_name = 285import_from = 286import_as_name = 287dotted_as_name = 288import_as_names = 289dotted_as_names = 290dotted_name = 291global_stmt = 292nonlocal_stmt = 293assert_stmt = 294compound_stmt = 295async_stmt = 296if_stmt = 297while_stmt = 298for_stmt = 299try_stmt = 300with_stmt = 301with_item = 302except_clause = 303suite = 304namedexpr_test = 305test = 306test_nocond = 307lambdef = 308lambdef_nocond = 309or_test = 310and_test = 311not_test = 312comparison = 313comp_op = 314star_expr = 315expr = 316xor_expr = 317and_expr = 318shift_expr = 319arith_expr = 320term = 321factor = 322power = 323atom_expr = 324atom = 325testlist_comp = 326trailer = 327subscriptlist = 328subscript = 329sliceop = 330exprlist = 331testlist = 332dictorsetmaker = 333classdef = 334arglist = 335argument = 336comp_iter = 337sync_comp_for = 338comp_for = 339comp_if = 340encoding_decl = 341yield_expr = 342yield_arg = 343func_body_suite = 344func_type_input = 345func_type = 346typelist = 347#--end constants-- sym_name = {}for _name, _value in list(globals().items()):    if type(_value) is type(0):        sym_name[_value] = _namedel _name, _value