On Tue, Mar 9, 2010 at 11:28 AM, Enssle Carl Philipp
<carl-philipp.ens...@colenco.ch> wrote:
> Hallo.
>
> When importing string in python, "letters" are defined as follows:
>
>>>> import string
>>>> string.letters
> 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
>
> … whereas when importing matplotlib, the order of "letters" seems to be
> changed:
>
>>>> import matplotlib
>>>> string.letters
> 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
>
> Would be grateful for a comment.

I'm seeing this here too:

In [1]: import string

In [2]: string.letters
Out[2]: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'

In [3]: import matplotlib

In [4]: string.letters
Out[4]: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'

That's just bizarre. This is on 0.99.1.1 on OpenSUSE 11.2

Ryan

-- 
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to