DEBIAN-SPECIFIC
Set standard output and error to valid UNIX locations.

Index: drpython-3.11.4/drpython.py
===================================================================
--- drpython-3.11.4.orig/drpython.py
+++ drpython-3.11.4/drpython.py
@@ -89,8 +89,8 @@ if sys.platform == "win32":
     if not os.path.exists(logdir):
         logdir = '/'
 
-err_file = os.path.join(logdir, "drpython.err")
-out_file = os.path.join(logdir, "drpython.out")
+err_file = os.path.join(logdir, ".drpython/drpython.err")
+out_file = os.path.join(logdir, ".drpython/drpython.out")
 firsterr_file = os.path.join(logdir, "drpythonfirst.err")
 
 
