Confusion about scan_code in modulefinder.py (in python 2.6)

2010-01-12 Thread Brock Pytlik
can_opcodes_25 isn't.) In the end, I've gotten everything working to my satisfaction, but I'm curious about how this module (and those lines in particular) were designed to be used. Any insight would be appreciated. Thanks, Brock -- http://mail.python.org/mailman/listinfo/python-list

Re: System default sys.path

2009-07-02 Thread Brock Pytlik
David Lyon wrote: On Wed, 01 Jul 2009 19:48:04 -0700, Brock Pytlik wrote: Hi, I'm trying to find a way to get the value sys.path would have on a particular system if python was started with an empty python path. I do want it to include the site specific additional paths. I know I can

System default sys.path

2009-07-01 Thread Brock Pytlik
want here) 2) a variable containing the list of suffixes that are applies to the prefixes, like lib/python/site-packages 3) a way of handing the *.pth files Thanks in advance for the help, Brock -- http://mail.python.org/mailman/listinfo/python-list

Unzip Files

2009-05-31 Thread Brock
will be greatly appreciated. Many thanks, Brock -- http://mail.python.org/mailman/listinfo/python-list

Third Party Modules

2009-04-28 Thread Brock
reference. Many thanks! - Brock -- http://mail.python.org/mailman/listinfo/python-list

RE: graphing lifelines

2008-07-15 Thread Brock Massel
Google this: "drawing graphs with dot" dotguide.pdf Look at page ~40ff. Perhaps a simple script to generate graphviz input. Then let those excellent tools do the heavy lifting. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of E. J. Gold is the Hi-Tec

getting thread object from SocketServer.ThreadingTCPServer

2007-05-19 Thread Brad Brock
Hi list. I have a little problem when using SocketServer.ThreadingTCPServer. I want to make a list of thread-objects generated by the ThreadingTCPServer. How can I get the thread object? Thank you. Lookin

descriptors for container items

2005-09-03 Thread Brock Filer
> > If I do that, the attributes (that was a stupid name for me to > choose) > > and children would have to not share any names with each other, > > Since multiple objects can indeed have duplicate attribute names, and > such > duplication is rampant in Python, I am not sure what you mean. felo

descriptors for container items

2005-09-03 Thread Brock Filer
> I personally would first try to dump the quotes and use standard > attributes -- countries.us.Colorado... -- and the __get/set/delattr__ > methods. If I do that, the attributes (that was a stupid name for me to choose) and children would have to not share any names with each other, with the

descriptors for container items

2005-09-01 Thread Brock Filer
... or something like that. I have an XMLish data structure whose nodes' __get/set/del item__ methods resolve as: node['foo'] -> node.children['foo'] node['@bar'] -> node.attributes['bar'] so you can say: countries['us']['Colorado']['Denver']['@population'] This is going to be used in user-i