Search Results

3
votes
1answer
155 views

str.format() -> how to left-justify

>>> print 'there are {0:10} students and {1:10} teachers'.format(scnt, tcnt) there are 100 students and 20 teachers What would be the code so that …
0
votes
2answers
154 views

logging with filters

i'm using logging (import logging) to log messages; within 1 single module, i am logging messages at the debug level (my_logger.debug('msg')); some of these debug messages come fr …
-2
votes
0answers
298 views

python example: difference between object reference and object copy [closed]

had an example in my newbie notes and thought it wouldn't hurt to share it... >>> lst1=[1,2,3] >>> lst2 = lst1 # reference >>> lst3 = lst1[:] …
1
vote
2answers
251 views

python - config options, how to input/handle?

when your app takes a few (~ 5) config params, and the app is going to be used by non-tech users (i.e. KISS), how do you usually handle reading config options, and then passing around the params be …
1
vote
2answers
216 views

python, unittest: is there a way to pass command line options to the app

I have a module that imports unittest and has some TestCases. I would like to accept some command line options (for example below, the name of a data file), but when I try to pass the option I get …
5
votes
9answers
236 views

tools to aid in browsing/following (large) python projects’ source code

A specific example: becoming familiar with django's project source code (core, contrib, utils, etc.). Example of a useful tool: ctags - it allows you to "jump" to the file+location where a functio …
1
vote
3answers
143 views

Python: how to write a data struct to a file as text (not pickled)

Is there a way to write python data structs to a file as text. e.g. an app is running and has a variable/object: OPTIONS = ('ON', 'OFF', ) I need to write/merge the OPTIONS tuple in …
0
votes

python - config options, how to input/handle?

"Counts answer" Please update these counts and feel free to add/modify. Do you usually read config options via: - command-line/gui options : 1 - a config text file : 0 How do multi …
2
votes

tools to aid in browsing/following (large) python projects’ source code

The following is an aggregate of tools mentioned in other answers... cscope http://cscope.sourceforge.net/ wik …