Search Results

1
vote

Class method differences in Python: bound, unbound and static

that is an error. first of all, first line should be like this (be careful of capitals) class Test(object): Whenever you call a method of a class, it gets …
3
votes

Python: How to make a cross-module variable?

Define a module ( call it "globalbaz" ) and have the variables defined inside it. All the modules using this "pseudoglobal" should import the "globalbaz" module, and refer to it using "globalbaz.va …
3
votes

Download from EXPLOSM.net Comics Script [Python]

refactormycode may be a more appropriate web site for these "let's improve this code" type of discussions. …
1
vote

How do capture groups work? (wrt python regular expressions)

You are repeating the group itself by appending '+' after ')', I do not know the implementation details but it matches 7 times, and returns only the last match. In the first one, you are ma …
1
vote

Python: Sending a large dictionary to a server

Have you tried using pickle on the data ? …