Changeset 359 in tailor
- Timestamp:
- 05/05/05 11:11:01 (8 years ago)
- Hash name:
- 20050505091101-92b7f-669a46f2fb0de67c1c77bbf2ef5b999d6741313a
- Location:
- vcpx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vcpx/shwrap.py
r311 r359 120 120 inp, out = popen2(command) 121 121 def handleinp(): 122 inp.write(input )122 inp.write(input.encode('utf8')) 123 123 inp.close() 124 124 inpthread = threading.Thread(target = handleinp) -
vcpx/tailor.py
r317 r359 21 21 from source import InvocationError 22 22 from session import interactive 23 24 # Make printouts be UTF-8 encoded. 25 import codecs, sys 26 sys.stdout = codecs.getwriter('utf8')(sys.stdout) 23 27 24 28 STATUS_FILENAME = 'tailor.info'
Note: See TracChangeset
for help on using the changeset viewer.
