SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S

1
(3)
2
(4)
3
(5)
4
(3)
5
6
7
(2)
8
(4)
9
(6)
10
11
(7)
12
(8)
13
(2)
14
(2)
15
(5)
16
(14)
17
(13)
18
(8)
19
20
21
22
(2)
23
(7)
24
(7)
25
(8)
26
(7)
27
(2)
28
(1)
29
30




Showing 8 results of 8

From: Darren D. <dsd...@gm...> - 2008年09月25日 16:32:14
On Thursday 25 September 2008 11:53:04 am John Hunter wrote:
> On Thu, Sep 25, 2008 at 9:31 AM, Darren Dale <dsd...@gm...> wrote:
> > I noticed this morning that my Times and Palatino system fonts are not
> > being found anymore. I removed my fontManager.cache and ran my script
> > with verbose=debug, and it looks like creatFontDict found them, but then
> > findfont cant:
>
> I recently fixed another bug related to font finding when an explicit
> file name was passed -- I wonder if I broke a normal use case. It's a
> simple change shown in the diff below. Could you manually revert on
> your end and see if it makes a difference. If so, I'll have to find
> another solution to the problem I was fixing.
>
>
> johnh@flag:mpl> svn diff lib/matplotlib/font_manager.py -r6097:6098
> Index: lib/matplotlib/font_manager.py
> ===================================================================
> --- lib/matplotlib/font_manager.py (revision 6097)
> +++ lib/matplotlib/font_manager.py (revision 6098)
> @@ -955,7 +955,7 @@
> fname = prop.get_file()
> if fname is not None:
> verbose.report('findfont returning %s'%fname, 'debug')
> - return fname[0]
> + return fname
>
> if fontext == 'afm':
> fontdict = self.afmdict
I tried this, but it didnt change anything. I ended up checking the values of 
the keys in the fontdict, and noticed that rather than "Times" I needed to 
use "Times New Roman", for example. Maybe this is a change in my font 
packages, or maybe my configuration was always out of whack and I hadnt 
noticed because I was using usetex up until now, in which case I apologize 
for noise.
From: John H. <jd...@gm...> - 2008年09月25日 15:53:09
On Thu, Sep 25, 2008 at 9:31 AM, Darren Dale <dsd...@gm...> wrote:
> I noticed this morning that my Times and Palatino system fonts are not being
> found anymore. I removed my fontManager.cache and ran my script with
> verbose=debug, and it looks like creatFontDict found them, but then findfont
> cant:
I recently fixed another bug related to font finding when an explicit
file name was passed -- I wonder if I broke a normal use case. It's a
simple change shown in the diff below. Could you manually revert on
your end and see if it makes a difference. If so, I'll have to find
another solution to the problem I was fixing.
johnh@flag:mpl> svn diff lib/matplotlib/font_manager.py -r6097:6098
Index: lib/matplotlib/font_manager.py
===================================================================
--- lib/matplotlib/font_manager.py (revision 6097)
+++ lib/matplotlib/font_manager.py (revision 6098)
@@ -955,7 +955,7 @@
 fname = prop.get_file()
 if fname is not None:
 verbose.report('findfont returning %s'%fname, 'debug')
- return fname[0]
+ return fname
 if fontext == 'afm':
 fontdict = self.afmdict
From: Ryan M. <rm...@gm...> - 2008年09月25日 15:13:22
Jeff Whitaker wrote:
> Ryan May wrote:
>> Jeff,
>>
>> I just noticed that the 0.99.1 tarball for Basemap does not include a 
>> pdf of the docs, while 0.99 did. Was this intentional or just an 
>> oversight? I only ask because it broke the gentoo option for 
>> installing the docs.
>>
>> Ryan
>>
>> 
> Ryan: That wasn't the real docs, it was just a pdf of a tutorial I gave 
> for a class. It was included by mistake. The real docs (which are not 
> yet finished) are at:
> 
> http://matplotlib.sf.net/basemap/doc/html
> 
> You can build them yourself if you want, they are in the basemap/doc 
> directory.
Yeah, I noticed that, but haven't tried getting sphinx running here. I 
was more wondering if it was an oversight or if the gentoo package 
(really, just compiling script) just be modified to no longer look for 
the pdf. Clearly, it's the latter.
Thanks,
Ryan
-- 
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma
From: Jeff W. <js...@fa...> - 2008年09月25日 15:11:51
Ryan May wrote:
> Jeff,
>
> I just noticed that the 0.99.1 tarball for Basemap does not include a 
> pdf of the docs, while 0.99 did. Was this intentional or just an 
> oversight? I only ask because it broke the gentoo option for installing 
> the docs.
>
> Ryan
>
> 
Ryan: That wasn't the real docs, it was just a pdf of a tutorial I gave 
for a class. It was included by mistake. The real docs (which are not 
yet finished) are at:
http://matplotlib.sf.net/basemap/doc/html
You can build them yourself if you want, they are in the basemap/doc 
directory.
-Jeff
-- 
Jeffrey S. Whitaker Phone : (303)497-6313
NOAA/OAR/CDC R/PSD1 FAX : (303)497-6449
325 Broadway Boulder, CO, USA 80305-3328
From: Ryan M. <rm...@gm...> - 2008年09月25日 14:56:50
Jeff,
I just noticed that the 0.99.1 tarball for Basemap does not include a 
pdf of the docs, while 0.99 did. Was this intentional or just an 
oversight? I only ask because it broke the gentoo option for installing 
 the docs.
Ryan
-- 
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma
From: Darren D. <dsd...@gm...> - 2008年09月25日 14:31:17
I noticed this morning that my Times and Palatino system fonts are not being 
found anymore. I removed my fontManager.cache and ran my script with 
verbose=debug, and it looks like creatFontDict found them, but then findfont 
cant:
$ python characteristics_size_plots.py
matplotlib data path /usr/lib64/python2.5/site-packages/matplotlib/mpl-data
loaded rc file /home/darren/.matplotlib/matplotlibrc
matplotlib version 0.98.3
verbose.level debug
interactive is False
units is False
platform is linux2
loaded modules: 
['_bisect', 'numpy.ma.types', 'xml.sax.urlparse', 'distutils', 'matplotlib.errno', 'pylab', 'numpy.core.defchararray', 'xml._xmlplus', 'matplotlib.tempfile', 'distutils.sysconfig', 'ctypes._endian', 'encodings.encodings', 'matplotlib.dateutil', 'matplotlib.colors', 'numpy.core.numerictypes', 'numpy.testing.sys', 'numpy.core.info', 'xml', 'numpy.fft.types', 'numpy.ma.operator', 'distutils.dep_util', 'numpy.ma.cPickle', 'struct', 'numpy.random.info', 'tempfile', 'base64', 'numpy.linalg', 'matplotlib.threading', 'numpy.testing.operator', 'enthought.pyface', 'imp', 'numpy.testing', 'collections', 'numpy.core.umath', 'numpy.lib.pkgutil', 'pytz.os', 'numpy.lib.numpy', 'numpy.core.scalarmath', 'numpy.ma.sys', 'matplotlib.matplotlib', 'string', 'numpy.testing.os', 'matplotlib.locale', 'numpy.lib.arraysetops', 'numpy.testing.unittest', 'numpy.lib.math', 'encodings.utf_8', 'matplotlib.__future__', 'pytz.tzinfo', 'numpy.testing.re', 'itertools', 'numpy.version', 'numpy.lib.re', 'distutils.re', 'ctypes.os', 'numpy.core.os', 'numpy.lib.type_check', 'httplib', 'enthought.traits', 'bisect', 'signal', 'enthought.pyface.ui', 'numpy.lib.types', 'numpy.lib._datasource', 'random', 'numpy.ma.extras', 'numpy.fft.fftpack_lite', 'matplotlib.cbook', 'ctypes.ctypes', 'xml.sax.xmlreader', 'matplotlib.pytz', 'numpy.__builtin__', 'distutils.log', 'xml.sax.saxexts', 'cStringIO', 'numpy.ma.core', 'numpy.numpy', 'matplotlib.StringIO', 'locale', 'numpy.add_newdocs', 'numpy.lib.getlimits', 'numpy.random.numpy', 'xml.sax.saxlib', 'pkgutil', 'numpy.testing.types', 'numpy.lib.sys', 'encodings', 'numpy.ma.itertools', 'scikits', 'dateutil', 'numpy.lib.io', 'pytz.cStringIO', 'numpy.imp', 'enthought', 'threading', 'numpy.testing.decorators', 'matplotlib.warnings', 'rfc822', 'matplotlib.string', 'pytz.pytz', 'urllib', 'matplotlib.sys', 're', 'numpy.lib._compiled_base', 'new', 'numpy.random.mtrand', 'math', 'numpy.fft.helper', 'fcntl', 'numpy.ma.warnings', 'matplotlib.numpy', 'UserDict', 'numpy.lib.function_base', 'distutils.os', 'matplotlib', 'numpy.core.types', 'numpy.lib.ufunclike', 'numpy.lib.info', 'ctypes', '_xmlplus', 'ctypes.struct', 'codecs', 'numpy.core._sort', 'numpy.os', 'md5', '_locale', 'matplotlib.sre_constants', 'matplotlib.os', 'thread', 'StringIO', 'numpy.core.memmap', 'traceback', 'pkg_resources', 'numpy.testing.warnings', 'xml.sax.sax2exts', 'weakref', 'numpy.core._internal', 'numpy.fft.fftpack', 'numpy.testing.imp', 'numpy.linalg.lapack_lite', 'distutils.sys', 'os', 'numpy.lib.warnings', 'numpy.lib.itertools', '__future__', 'matplotlib.copy', 'xml.sax.types', 'matplotlib.traceback', '_sre', 'unittest', 'numpy.core.sys', 'numpy.random', 'numpy.linalg.numpy', '__builtin__', 'numpy.lib.twodim_base', 'matplotlib.re', 'numpy.core.cPickle', 'operator', 'numpy.testing.parametric', 'numpy.core.arrayprint', 'distutils.string', 'numpy.lib.arrayterator', 'ctypes._ctypes', 'ctypes.sys', 'matplotlib.datetime', 'posixpath', 'numpy.lib.financial', 'numpy.core.multiarray', 'errno', '_socket', 'binascii', 'sre_constants', 'datetime', 'numpy.ma', 'matplotlib.md5', 'types', 'pytz.sys', 'xml.sax.handler', 'numpy.core.numpy', 'numpy', 'pytz.pkg_resources', 'matplotlib.types', 'numpy.core.defmatrix', 'xml.sax.os', 'cPickle', 'matplotlib.xml', 'xml.sax.string', '_codecs', 'numpy.lib.operator', 'numpy.__config__', 'pytz', 'matplotlib.pyparsing', 'numpy.lib.stride_tricks', 'numpy.ma.numpy', 'copy', 'numpy.core.re', '_struct', '_types', 'numpy.core.fromnumeric', 'hashlib', 'numpy.ctypeslib', 'numpy.lib.scimath', 'numpy.fft', 'numpy.lib', 'xml.sax.saxutils', 'posix', 'encodings.aliases', 'enthought.traits.ui', 'matplotlib.fontconfig_pattern', 'exceptions', 'sre_parse', 'pytz.bisect', 'sets', 'numpy.core.cStringIO', 'numpy.core.ctypes', 'mimetools', 'distutils.distutils', 'copy_reg', 'sre_compile', 'xml.sax', '_hashlib', '_random', 'pytz.struct', 'numpy.lib.__future__', 'site', 'numpy.lib.polynomial', 'numpy._import_tools', 'numpy.core.copy_reg', 'xml.sax.urllib2', 'zipimport', 'xml.sys', '__main__', 'numpy.fft.info', 'numpy.core.records', 'shutil', 'numpy.lib.cPickle', 'numpy.sys', 'matplotlib.weakref', 'numpy.core._dotblas', 'numpy.testing.traceback', 'strop', 'numpy.testing.numpytest', 'numpy.core.numeric', 'pytz.tzfile', 'numpy.linalg.info', 'encodings.codecs', 'gettext', 'pytz.datetime', 'numpy.ctypes', 'numpy.core', 'matplotlib.rcsetup', 'matplotlib.time', 'zlib', 'pytz.sets', 'xml.sax._exceptions', 'xml.sax.codecs', 'stat', '_ssl', 'numpy.lib.utils', 'numpy.lib.index_tricks', 'warnings', 'encodings.types', '_ctypes', 'numpy.lib.shape_base', 'distutils.util', 'urllib2', 'numpy.fft.numpy', 'sys', 'numpy.core.warnings', 'socket', 'numpy.core.__builtin__', 'xml.sax.sys', 'numpy.lib.format', 'numpy.lib.os', 'numpy.testing.nosetester', 'os.path', 'pytz.gettext', 'numpy.lib.shutil', 'distutils.spawn', 'matplotlib.distutils', '_weakref', 'distutils.errors', 'urlparse', 'linecache', 'matplotlib.shutil', 'numpy.lib.cStringIO', 'time', 'numpy.lib.machar', 'numpy.testing.numpy', 'numpy.linalg.linalg', 'numpy.testing.utils']
$HOME=/home/darren
CONFIGDIR=/home/darren/.matplotlib
font search path 
['/usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf', '/usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm']
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz1Sym.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz4Sym.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz5Sym.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmb10.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz2SymBol.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz3Sym.ttf
trying 
fontname /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/Vera.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz1Sym.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz4Sym.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz5Sym.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmb10.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz2SymBol.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz3Sym.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/Vera.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz2Sym.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmex10.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz4SymBol.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz3SymBol.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSiz1SymBol.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmr10.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/cmss10.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeSerifBold.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMBatnan.otf
createFontDict: /home/darren/.fonts/cmmi10.ttf
createFontDict: /usr/share/fonts/corefonts/ariblk.ttf
createFontDict: /usr/share/fonts/corefonts/courbi.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMNisibinOutline.otf
createFontDict: /usr/local/share/fonts/OpenType/PalatinoLTStd-Italic.otf
createFontDict: /usr/local/share/fonts/Adobe/FreeMonoBoldOblique.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMMardin.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerifCondensed-BoldItalic.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntUpSma.otf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntSmaBol.otf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraMoBI.ttf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraSeBd.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeSansBoldOblique.ttf
createFontDict: /usr/share/fonts/TTF/luxisb.ttf
createFontDict: /usr/share/fonts/corefonts/trebucbi.ttf
createFontDict: /usr/share/fonts/corefonts/georgiab.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeSans.ttf
createFontDict: /home/darren/.fonts/msam10.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz3Sym.otf
createFontDict: /usr/share/fonts/texcm-ttf/cmmi10.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSans-Bold.ttf
createFontDict: /usr/share/fonts/corefonts/georgiai.ttf
createFontDict: /usr/share/fonts/corefonts/impact.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz1SymBol.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansCondensed.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz4SymBol.otf
createFontDict: /home/darren/.fonts/cmsy10.ttf
createFontDict: /usr/share/fonts/TTF/luxirri.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntUpSmaBol.otf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraBd.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMQenNeshrin.otf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraIt.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansCondensed-Oblique.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMTalada.otf
createFontDict: /usr/share/fonts/corefonts/trebucbd.ttf
createFontDict: /home/darren/.fonts/cmex10.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntUpDisBol.otf
createFontDict: /usr/share/fonts/OTF/GohaTibebZemen.otf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraMoBd.ttf
createFontDict: /usr/local/share/fonts/TrueType/PalatinoLTStd-BoldItalic.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMAntioch.otf
createFontDict: /usr/share/fonts/corefonts/couri.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz2Sym.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerif.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntSma.otf
createFontDict: /usr/share/fonts/corefonts/verdanai.ttf
createFontDict: /usr/share/fonts/corefonts/verdanab.ttf
createFontDict: /usr/local/share/fonts/TrueType/greek.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMUrhoy.otf
createFontDict: /usr/share/fonts/OTF/SyrCOMJerusalemBold.otf
createFontDict: /usr/local/share/fonts/Adobe/FreeSerifItalic.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerif-Bold.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMMardinBold.otf
createFontDict: /usr/share/fonts/TTF/luxisbi.ttf
createFontDict: /usr/share/fonts/corefonts/arial.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeMonoOblique.ttf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraMoIt.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMJerusalem.otf
createFontDict: /home/darren/.fonts/PalatinoLTStd-Italic.otf
createFontDict: /usr/local/share/fonts/Adobe/FreeMono.ttf
createFontDict: /usr/share/fonts/TTF/luximb.ttf
createFontDict: /usr/share/fonts/corefonts/timesi.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMTurAbdin.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSans-Oblique.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXGeneralItalic.otf
createFontDict: /usr/local/share/fonts/OpenType/PalatinoLTStd-Roman.otf
createFontDict: /usr/share/fonts/TTF/luximr.ttf
createFontDict: /usr/share/fonts/corefonts/comicbd.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXGeneralBolIta.otf
createFontDict: /usr/share/fonts/OTF/SyrCOMMidyat.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerif-Italic.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeMonoBold.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansMono-BoldOblique.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSans-ExtraLight.ttf
createFontDict: /usr/share/fonts/corefonts/cour.ttf
createFontDict: /usr/local/share/fonts/TrueType/PalatinoLTStd-Bold.ttf
createFontDict: /usr/share/fonts/TTF/GohaTibebZemen.ttf
createFontDict: /usr/share/fonts/corefonts/andalemo.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansMono.ttf
createFontDict: /usr/share/fonts/corefonts/georgiaz.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeSansBold.ttf
createFontDict: /usr/share/fonts/corefonts/trebuc.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntUpDis.otf
createFontDict: /usr/local/share/fonts/OpenType/PalatinoLTStd-Bold.otf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz4Sym.otf
createFontDict: /usr/share/fonts/texcm-ttf/cmsy10.ttf
createFontDict: /usr/share/fonts/TTF/luxisr.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMEdessa.otf
createFontDict: /usr/share/fonts/OTF/SyrCOMUrhoyBold.otf
createFontDict: /usr/local/share/fonts/OpenType/PalatinoLTStd-BoldItalic.otf
createFontDict: /home/darren/.fonts/PalatinoLTStd-Roman.otf
createFontDict: /usr/share/fonts/TTF/luxirbi.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz2SymBol.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansMono-Oblique.ttf
createFontDict: /home/darren/.fonts/cmr10.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntUpBol.otf
createFontDict: /usr/share/fonts/TTF/luximbi.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMJerusalemItalic.otf
createFontDict: /usr/share/fonts/corefonts/ariali.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXNonUniBolIta.otf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraBI.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXNonUniIta.otf
createFontDict: /usr/share/fonts/TTF/luximri.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMKharput.otf
createFontDict: /usr/share/fonts/OTF/SyrCOMNisibin.otf
createFontDict: /usr/share/fonts/texcm-ttf/cmex10.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntDis.otf
createFontDict: /usr/share/fonts/OTF/SyrCOMMalankara.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSans-BoldOblique.ttf
createFontDict: /home/darren/.fonts/PalatinoLTStd-Bold.otf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz5Sym.otf
createFontDict: /home/darren/.fonts/cmbx10.ttf
createFontDict: /usr/local/share/fonts/TrueType/PalatinoLTStd-Roman.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXNonUni.otf
createFontDict: /usr/lib/openoffice/share/fonts/truetype/opens___.ttf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraSe.ttf
createFontDict: /home/darren/.fonts/PalatinoLTStd-BoldItalic.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansCondensed-BoldOblique.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMBatnanBold.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerifCondensed.ttf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/VeraMono.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMJerusalemOutline.otf
createFontDict: /usr/share/fonts/corefonts/verdana.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXGeneral.otf
createFontDict: /usr/share/fonts/TTF/luxisri.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXVar.otf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz3SymBol.otf
createFontDict: /usr/share/fonts/corefonts/comic.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansCondensed-Bold.ttf
createFontDict: /usr/local/share/fonts/Adobe/FreeSansOblique.ttf
createFontDict: /home/darren/.fonts/msbm10.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMCtesiphon.otf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntDisBol.otf
createFontDict: /usr/share/fonts/texcm-ttf/cmr10.ttf
createFontDict: /usr/share/fonts/corefonts/arialbd.ttf
createFontDict: /usr/share/fonts/OTF/SyrCOMAdiabene.otf
createFontDict: /usr/share/fonts/dejavu/DejaVuSansMono-Bold.ttf
createFontDict: /usr/share/fonts/corefonts/georgia.ttf
createFontDict: /usr/share/fonts/corefonts/verdanaz.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXIntUp.otf
createFontDict: /usr/share/fonts/corefonts/timesbd.ttf
createFontDict: /usr/share/fonts/corefonts/arialbi.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSans.ttf
createFontDict: /usr/share/fonts/ttf-bitstream-vera/Vera.ttf
createFontDict: /usr/share/fonts/corefonts/timesbi.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerifCondensed-Italic.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerif-BoldItalic.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXNonUniBol.otf
createFontDict: /usr/share/fonts/TTF/luxirr.ttf
createFontDict: /usr/local/share/fonts/TrueType/PalatinoLTStd-Italic.ttf
createFontDict: /usr/share/fonts/dejavu/DejaVuSerifCondensed-Bold.ttf
createFontDict: /usr/share/fonts/corefonts/trebucit.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXGeneralBol.otf
createFontDict: /usr/local/share/fonts/Adobe/FreeSerifBoldItalic.ttf
createFontDict: /usr/share/fonts/TTF/luxirb.ttf
createFontDict: /usr/share/fonts/corefonts/courbd.ttf
createFontDict: /usr/share/fonts/corefonts/webdings.ttf
createFontDict: /usr/share/fonts/corefonts/times.ttf
createFontDict: /usr/local/share/fonts/OpenType/STIXSiz1Sym.otf
createFontDict: /usr/local/share/fonts/OpenType/STIXVarBol.otf
createFontDict: /usr/local/share/fonts/Adobe/FreeSerif.ttf
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pncri8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/ptmr8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pncr8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pagko8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pcrb8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvro8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/ptmb8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pagk8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/putri8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/putr8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvbo8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pbkl8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pbkli8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvbo8an.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/psyr.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pagdo8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pagd8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/putb8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvl8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/cmr10.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pplbi8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/cmsy10.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/cmex10.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvb8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pncbi8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvb8an.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/cmtt10.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvr8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/cmmi10.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pcrr8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvlo8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pplr8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pcrro8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/putbi8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pplri8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvr8an.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pplb8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/phvro8an.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/ptmri8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pzdr.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pncb8a.afm
createFontDict: /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/afm/pbkd8a.afm
createFontDict: /usr/share/fonts/default/ghostscript/fcyri.afm
createFontDict: /usr/share/fonts/default/ghostscript/n022004l.afm
createFontDict: /usr/share/fonts/default/ghostscript/a010015l.afm
createFontDict: /usr/share/fonts/Type1/l047016t.afm
createFontDict: /usr/share/fonts/Type1/l049016t.afm
createFontDict: /usr/share/fonts/Type1/l048036t.afm
createFontDict: /usr/share/fonts/default/ghostscript/n021004l.afm
createFontDict: /usr/share/fonts/Type1/l048016t.afm
createFontDict: /usr/share/fonts/Type1/c0583bt_.afm
createFontDict: /usr/share/fonts/Type1/l049036t.afm
createFontDict: /usr/share/fonts/Type1/l047033t.afm
createFontDict: /usr/share/fonts/default/ghostscript/u003043t.afm
createFontDict: /usr/share/fonts/default/ghostscript/b018015l.afm
createFontDict: /usr/share/fonts/Type1/c0632bt_.afm
createFontDict: /usr/share/fonts/default/ghostscript/a010033l.afm
createFontDict: /usr/share/fonts/Type1/l047036t.afm
createFontDict: /usr/share/fonts/Type1/UTBI____.afm
createFontDict: /usr/share/fonts/default/ghostscript/c059033l.afm
createFontDict: /usr/share/fonts/default/ghostscript/p052003l.afm
createFontDict: /usr/share/fonts/default/ghostscript/p052023l.afm
createFontDict: /usr/share/fonts/Type1/l049033t.afm
createFontDict: /usr/share/fonts/Type1/c0611bt_.afm
createFontDict: /usr/share/fonts/default/ghostscript/n021023l.afm
createFontDict: /usr/share/fonts/Type1/cour.afm
createFontDict: /usr/share/fonts/Type1/c0633bt_.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019064l.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019043l.afm
createFontDict: /usr/share/fonts/Type1/c0582bt_.afm
createFontDict: /usr/share/fonts/default/ghostscript/d050000l.afm
createFontDict: /usr/share/fonts/Type1/courbi.afm
createFontDict: /usr/share/fonts/default/ghostscript/n021003l.afm
createFontDict: /usr/share/fonts/default/ghostscript/n022003l.afm
createFontDict: /usr/share/fonts/Type1/couri.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019004l.afm
createFontDict: /usr/share/fonts/default/ghostscript/n021024l.afm
createFontDict: /usr/share/fonts/default/ghostscript/s050000l.afm
createFontDict: /usr/share/fonts/default/ghostscript/a010035l.afm
createFontDict: /usr/share/fonts/default/ghostscript/bchb.afm
createFontDict: /usr/share/fonts/default/ghostscript/n022023l.afm
createFontDict: /usr/share/fonts/default/ghostscript/bchbi.afm
createFontDict: /usr/share/fonts/default/ghostscript/c059013l.afm
createFontDict: /usr/share/fonts/default/ghostscript/fcyr.afm
createFontDict: /usr/share/fonts/default/ghostscript/bchr.afm
createFontDict: /usr/share/fonts/default/ghostscript/bchri.afm
createFontDict: /usr/share/fonts/Type1/c0648bt_.afm
createFontDict: /usr/share/fonts/Type1/l047013t.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019023l.afm
createFontDict: /usr/share/fonts/Type1/l048033t.afm
createFontDict: /usr/share/fonts/Type1/l049013t.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019044l.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019063l.afm
createFontDict: /usr/share/fonts/Type1/c0649bt_.afm
createFontDict: /usr/share/fonts/Type1/c0419bt_.afm
createFontDict: /usr/share/fonts/default/ghostscript/a010013l.afm
createFontDict: /usr/share/fonts/default/ghostscript/c059036l.afm
createFontDict: /usr/share/fonts/Type1/UTRG____.afm
createFontDict: /usr/share/fonts/Type1/l048013t.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019024l.afm
createFontDict: /usr/share/fonts/Type1/UTB_____.afm
createFontDict: /usr/share/fonts/default/ghostscript/b018032l.afm
createFontDict: /usr/share/fonts/default/ghostscript/n019003l.afm
createFontDict: /usr/share/fonts/default/ghostscript/b018012l.afm
createFontDict: /usr/share/fonts/default/ghostscript/n022024l.afm
createFontDict: /usr/share/fonts/default/ghostscript/p052024l.afm
createFontDict: /usr/share/fonts/default/ghostscript/p052004l.afm
createFontDict: /usr/share/fonts/Type1/UTI_____.afm
createFontDict: /usr/share/fonts/default/ghostscript/z003034l.afm
createFontDict: /usr/share/fonts/default/ghostscript/u004006t.afm
createFontDict: /usr/share/fonts/Type1/courb.afm
createFontDict: /usr/share/fonts/default/ghostscript/b018035l.afm
createFontDict: /usr/share/fonts/default/ghostscript/c059016l.afm
generated new fontManager
backend Qt4Agg version 0.9.1
 findfont failed Times
 findfont failed Palatino
 findfont found Bitstream Vera Serif, normal, normal 400, normal, 8.33
findfont 
returning /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf
 findfont failed Times
 findfont failed Palatino
 findfont found Bitstream Vera Serif, normal, normal 400, normal, 8.33
findfont 
returning /usr/lib64/python2.5/site-packages/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf
 findfont failed Times
 findfont failed Palatino
 findfont found Bitstream Vera Serif, normal, normal 400, normal, 8.33
[this findfont report repeats many times]
From: Michael D. <md...@st...> - 2008年09月25日 13:46:15
Thanks. Fixed.
Manuel Metz wrote:
> Hi Mike,
>
> I just stumbled over this bug report (#2126188) on sourceforge. This 
> seems to appear in version 5471, committed by you.
>
> Manuel
>
-- 
Michael Droettboom
Science Software Branch
Operations and Engineering Division
Space Telescope Science Institute
Operated by AURA for NASA
From: Manuel M. <mm...@as...> - 2008年09月25日 13:07:06
Hi Mike,
 I just stumbled over this bug report (#2126188) on sourceforge. This 
seems to appear in version 5471, committed by you.
Manuel

Showing 8 results of 8

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /