XML parser that sorts elements?

2006-09-22 Thread jmike
ely find any examples of the parser being subclassed. Thanks for any pointers! --JMike -- http://mail.python.org/mailman/listinfo/python-list

Re: XML parser that sorts elements?

2006-09-22 Thread jmike
o do. Thanks. (But if anyone else has a specific example I can crib from, that'd be great.) --JMike -- http://mail.python.org/mailman/listinfo/python-list

Re: XML parser that sorts elements?

2006-09-22 Thread jmike
ot a solution to your actual problem, but I hope it gives you > enough to work with to find your own solution. > > HTH, > -- Paul Whoa. Outstanding. Excellent. Thank you! --JMike -- http://mail.python.org/mailman/listinfo/python-list

Re: XML parser that sorts elements?

2006-09-28 Thread jmike
here. It was just a matter of supplying a different function for 'key'. It's up and running live now and all is well. Thanks again! (A bonus side effect of this is that it let me sneak "sorted()" into our test infrastructure, which gave me reason to get our IT guys to up

Command line arguments on Vista

2007-01-12 Thread jmike
printargs.py booga -a wooga I get this output: there are 4 args arg: printargs.py arg: booga arg: -a arg: wooga But on Windows Vista, when I run that command, I get there are 1 args arg: printargs.py What's up with that? --JMike -- http://mail.python.or

Re: Command line arguments on Vista

2007-01-12 Thread jmike
By the way, note that if I say (on Vista) python printargs.py booga -a wooga I get the desired output: > there are 4 args > arg: printargs.py > arg: booga > arg: -a > arg: wooga So the quesiton still stands, what's up with that? Thanks,

Re: Command line arguments on Vista

2007-01-12 Thread jmike
Some further information: perl seems to do the same thing (losing arguments). We think it may have something to do with file association. Any ideas anyone? --JMike -- http://mail.python.org/mailman/listinfo/python-list

Re: Command line arguments on Vista

2007-01-16 Thread jmike
Thanks for the answers; that was the problem exactly. --JMike Duncan Booth wrote: > It sounds like the registry entry for running Python files is messed up. > Can you go to a command line and see what the command 'ftype Python.File' > displays? (Assuming that command lines a

User-defined exception: "global name 'TestRunError' is not defined"

2008-07-09 Thread jmike
ggestions as to the most likely causes of this error coming up? Could it be something like an error happening where it is not explicitly in a try block, or an error happening while I'm already in an except block, or something like that? Thanks, --JMike -- http://mail.python.org/mailman/listinfo/python-list