Läuft die Voice Acoustic VA-Remotecontrol (AllDSP AllControl) nativ unter Linux auf echtem wxGTK 3.0 — ohne Wine und ohne dekompilierten App-Code. Ausgeführt wird das unveränderte Python-2.7-Bytecode aus dem macOS-.app; C-Extensions (wxGTK/numpy/ scipy/PortAudio) kommen nativ aus Debian stretch. Enthält: va/ (Original-.pyc + pure-Python-Libs + Assets + launch.py mit den drei Linux-Fixes), Dockerfile/run.sh/entrypoint.sh, reference/ (dekompilierter Quellcode zum Debuggen) und README/STATUS. img.cache (378 MB, regenerierbar) ist per .gitignore ausgeschlossen. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
37 lines
789 B
Python
37 lines
789 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
"Basic example to test py3k conversion"
|
|
|
|
#PyFPDF-cover-test:format=PDF
|
|
#PyFPDF-cover-test:fn=py3k.pdf
|
|
#PyFPDF-cover-test:hash=ecf5ec7b9a3bb6015b4c9f0546f62e84
|
|
#PyFPDF-cover-test:python2=no
|
|
|
|
import common # test utilities
|
|
from fpdf import FPDF
|
|
|
|
import sys
|
|
|
|
def dotest(outputname, nostamp):
|
|
pdf = FPDF()
|
|
if nostamp:
|
|
pdf._putinfo = lambda: common.test_putinfo(pdf)
|
|
|
|
pdf.add_page()
|
|
pdf.set_font('Arial', '', 14)
|
|
pdf.ln(10)
|
|
if nostamp:
|
|
data = "TEST-TEST-TEST"
|
|
else:
|
|
data = sys.version
|
|
|
|
#áéíóúüñ
|
|
# This string converted with errors in py2.x
|
|
pdf.write(5, ('hello world %s áéíóúüñ' % data))
|
|
|
|
pdf.output(outputname, 'F')
|
|
|
|
if __name__ == "__main__":
|
|
common.testmain(__file__, dotest)
|
|
|