OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
twisted
/
scripts
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
__init__.py
261 bytes
09/08/2017 10:38:36 AM
rw-r--r--
📁
__pycache__
-
03/31/2022 06:22:39 AM
rwxr-xr-x
📄
_twistd_unix.py
15.72 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
_twistw.py
1.46 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
htmlizer.py
1.82 KB
09/08/2017 10:38:36 AM
rw-r--r--
📁
test
-
03/31/2022 06:22:38 AM
rwxr-xr-x
📄
trial.py
20.64 KB
09/08/2017 10:38:36 AM
rw-r--r--
📄
twistd.py
761 bytes
09/08/2017 10:38:36 AM
rw-r--r--
Editing: twistd.py
Close
# -*- test-case-name: twisted.test.test_twistd -*- # Copyright (c) Twisted Matrix Laboratories. # See LICENSE for details. """ The Twisted Daemon: platform-independent interface. @author: Christopher Armstrong """ from __future__ import absolute_import, division from twisted.application import app from twisted.python.runtime import platformType if platformType == "win32": from twisted.scripts._twistw import ServerOptions, \ WindowsApplicationRunner as _SomeApplicationRunner else: from twisted.scripts._twistd_unix import ServerOptions, \ UnixApplicationRunner as _SomeApplicationRunner def runApp(config): _SomeApplicationRunner(config).run() def run(): app.run(runApp, ServerOptions) __all__ = ['run', 'runApp']