summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/asymptote/asymptote.py
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/asymptote/asymptote.py')
-rw-r--r--Master/texmf-dist/asymptote/asymptote.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/asymptote/asymptote.py b/Master/texmf-dist/asymptote/asymptote.py
index 721c464d36b..71e7b9beed6 100644
--- a/Master/texmf-dist/asymptote/asymptote.py
+++ b/Master/texmf-dist/asymptote/asymptote.py
@@ -3,7 +3,7 @@
from subprocess import *
class asy:
def __init__(self):
- self.session = Popen(['asy','-quiet','-interactive'],stdin=PIPE)
+ self.session = Popen(['asy','-quiet','-inpipe=0','-outpipe=2'],stdin=PIPE)
self.help()
def send(self, cmd):
self.session.stdin.write(cmd+'\n')