Search Results

6
votes
2answers
287 views

Finding Functions Defined in a with: Block

Here's some code from Richard Jones' Blog: with gui.vertical: tex …
2
votes

How would you design a very “Pythonic” UI framework?

The only attempt to do this that I know of is Hans Nowak's Wax (which is unfortunately dead). …
2
votes

Passing a dictionary to a function in python as keyword parameters

In python, this is called "unpacking", and you can find a bit about it in the tutorial. The …
0
votes

Python Canvas

I believe the HTML canvas lets you modify elements It does not. You can check out my HTML ca …
7
votes

Sorting and Grouping Nested Lists in Python

For the first question, the first thing you should do is sort the list by the second field: x = [ ['4', '21', '1', '14', '2008-10-24 15:42:58'], ['3', '22', '4', '2somename', '20 …
-1
votes

Loop function parameters for sanity check

def func(x='', y='', z='hooray!'): print x, y, z In [2]: f('test') test hooray! In [3]: f('test', 'and') test and hooray! In [4]: f('test', 'and', 'done!') test and done! …
20
votes

For Python programmers, is there anything equivalent to Perl’s CPAN?

sammy, have a look at pip, which will let you do "pip install foo", and will download and install its dependencies (as long as they're on …
3
votes

Best modules to develop a simple windowed 3D modeling application?

Any reason you wouldn't use wx's GLCanvas? Here's an example …
1
vote

deleting rows of a numpy array based on uniqueness of a value

My numpy is way out of practice, but this should work: #keepers is a dictionary of type int: (int, int) #the key is the row's final value, and the tuple is (row index, row[2]) keepe …
1
vote

How do I remove VSS hooks from a VS Web Site?

Those things are pernicious! Visual Studio sticks links to SourceSafe in everywhere, including into the XML that makes up your sln file. I wrote an …
2
votes

python, funny business with threads and IDEs?

The problem here is that raw_input waits for an enter to flush the input stream; check out its documentation. Py …
8
votes

Python html output (first attempt), several questions (code included)

It would not be overkill to use a framework for something like this; python frameworks tend to be very light and easy to work with, and would make it much easier for you to add features to your tin …
3
votes

How do you create an incremental ID in a Python Class

Are you aware of the id function in python, and could you use it instead of your counter idea? class C( …
3
votes

Sort a list of strings based on regular expression match or something similar

In [1]: def grp(pat, txt): ...: r = re.search(pat, txt) ...: return r.group(0) if r else '&' In [2]: y Out[2]: ['random text random text, can be anything blabla %A blab …
4
votes

Static vs instance methods of str in Python

There should be one-- and preferably only one --obvious way to do it. Philosophically speaking, there is only one obvious way to do it: 'a'.center(3). …