File: rt-hook-script.py

package info (click to toggle)
pyinstaller 6.18.0%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,824 kB
  • sloc: python: 41,828; ansic: 12,123; makefile: 171; sh: 131; xml: 19
file content (11 lines) | stat: -rw-r--r-- 198 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
import basemod

DATA_FROM_RTHOOK = "This is data from the RT-Hook"


class _Popen(basemod.Popen):
    def __init__(self, *args, **kw):
        super().__init__(*args, **kw)


basemod.Popen = _Popen