https://bugzilla.novell.com/show_bug.cgi?id=853270 https://bugzilla.novell.com/show_bug.cgi?id=853270#c0 Summary: devel:languages:python3/python3-matplotlib: Bug can't use mathtext in pdf output of matplotlib in python3 Classification: openSUSE Product: openSUSE.org Version: unspecified Platform: x86-64 OS/Version: openSUSE 13.1 Status: NEW Severity: Normal Priority: P5 - None Component: 3rd party software AssignedTo: speilicke@suse.com ReportedBy: arun@gmx.de QAContact: opensuse-communityscreening@forge.provo.novell.com Found By: --- Blocker: --- Running into a mathtext error when writing pdf files Here is how to reproduce the error: import matplotlib from matplotlib import pyplot as plt from matplotlib.backends.backend_pdf import PdfPages import numpy as np with PdfPages('test.pdf') as pdf: a = np.arange(20) s = np.sin(a) fig = plt.figure() plt.xlabel(r"test $\mu$ ") plt.plot(a,s) pdf.savefig() fails with a lot of error messages, ending in: RuntimeError: maximum recursion depth exceeded in __instancecheck__ changing plt.xlabel(r"test $\mu$ ") to plt.xlabel(r"test ") removes the crash. Could be related to pyparsing? When I use the 2.7 python version this doesn't happen. I'm running 13.1/Tumbleweed with python3-matplotlib installed from dlp3 at the moment. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.