File: boot_script.py

package info (click to toggle)
nmap 7.93%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 44,552 kB
  • sloc: cpp: 60,990; ansic: 30,785; python: 17,679; xml: 11,558; sh: 11,320; perl: 2,679; makefile: 1,000; java: 45; objc: 43
file content (27 lines) | stat: -rw-r--r-- 808 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Custom py2exe boot script

# This runs after py2exe's boot_common.py. That file overrides sys.stderr and
# sys.stdout to write to a logfile and a black hole, respectively. The location
# for the stderr logfile is sys.executable + '.log', though, which is not
# usually writable. We'll change it here to write to some other writable path.


import sys
import os
import os.path


#sys.stderr.write("Enter boot_script\n")
# Only do this if py2exe installed its Stderr object
if sys.stderr.__class__.__name__ == "Stderr":
    logdir = os.environ.get("LOCALAPPDATA",
            os.environ.get("APPDATA",
                os.environ.get("TEMP", "")))

    if sys.stderr._file is not None:
        sys.stderr._file.close()
    sys.stderr._file = open(os.path.join(logdir, "zenmap.exe.log"), 'a')


del os
del sys