This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import socket | |
| import sys | |
| import binascii | |
| from pprint import pprint | |
| # Tests xdg-dbus-proxy by sending different messages to check whether it | |
| # would crash or not. | |
| # | |
| # How to use: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import re | |
| import sys | |
| import pwd | |
| import csv | |
| from dataclasses import dataclass | |
| from typing import TextIO, Optional, Sequence | |
| Pid = int | |
| Uid = int |
OlderNewer