Re: Teaching Python

2011-04-19 Thread Allan Davis
-list -- ___ Allan Davis http://www.linkedin.com/in/cajuncode -- http://mail.python.org/mailman/listinfo/python-list

Re: [jython] Problem with an huge dictionary

2010-05-17 Thread Allan Davis
KeoBox, Can i look at the jython file you are executing? the ClassFormatException is not with the size of the dictionary. Jython is failing on an import. thanks, -- Allan Davis Member of NetBeans Dream Team http://wiki.netbeans.org

Re: RELEASED Python 2.6.5

2010-03-23 Thread Allan Davis
I just downloaded the installer and tested it on my win xp machine. The installer worked fine. -- Allan Davis Member of NetBeans Dream Team http://wiki.netbeans.org/NetBeansDreamTeam Lead Developer, nbPython http://wiki.netbeans.org

Re: How to tell if you're running on windows?

2009-12-04 Thread Allan Davis
Try this import sys import os sep = None if sys.platform == 'cygwin': sep = ';' else: sep = os.pathsep # then use sep in your path statment Hope this helps Thanks, -- Allan Davis Member of NetBeans Dream Team http

Re: can python do this?

2009-12-02 Thread Allan Davis
Try your distribution of linux package management tool. You will find PIL there -- Allan Davis Member of NetBeans Dream Team http://wiki.netbeans.org/NetBeansDreamTeam Lead Developer, nbPython http://wiki.netbeans.org/Python http