| bio | website | plus.google.com/… |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 3 months |
| seen | yesterday | |
| stats | profile views | 33 |
|
Apr 23 |
comment |
Python 3.3 Slowing Down During Large Loop Don't use a bare except: clause, list exactly what you want to catch to avid hiding bugs. My concern at first glance would be that your old = old+new line is copying and destroying larger and larger lists every loop iteration. Use old.extend(new) instead. |
|
Apr 19 |
comment |
Python TypeError: range() integer end argument expected, got float range is only going to yield integers anyways so just call int() on your parameters before passing them in. |
|
Apr 1 |
comment |
unsupported hash type when installing plone Install your distros openssl-dev package before running the plone install.sh. |
|
Feb 22 |
comment |
When is PyEval_InitThreads meant to be called? If you are embedding Python i a C program, call it once for the entire program as you initialize your embedded Python interpreter before having it execute your first Python code. |
|
Feb 22 |
comment |
Python gives wrong md5 checksum hashlib works fine. you've got some other problem. |
|
Feb 17 |
answered | When is PyEval_InitThreads meant to be called? |
|
Jan 22 |
awarded | Yearling |
|
Dec 26 |
comment |
ImportError: undefined symbol: Py_InitModule4 for swig This sounds a lot like stackoverflow.com/questions/4959872/… - did you compile something with Py_DEBUG defined? |
|
Dec 17 |
comment |
Accessing class variables from a list comprehension in the class definition +martijn-pieters link to a duplicate is right, there's a comment from +matt-b in there with the explanation: Python 2.7 list comprehensions do not have their own namespace (unlike set or dict comprehensions or generator expressions... replace your [] with {} to see that in action). They all have their own namespace in 3. |
|
Dec 17 |
comment |
Accessing class variables from a list comprehension in the class definition Interesting... One obvious workaround is to assign y after you exit the class definition. Foo.y = [Foo.x for i in range(1)] |
|
Dec 10 |
revised |
Python on Dotcloud Crashes on certain functions the problem is not related to hashlib |
|
Dec 10 |
suggested | suggested edit on Python on Dotcloud Crashes on certain functions |
|
Dec 10 |
answered | What is sys.maxint in Python 3? |
|
Dec 9 |
revised |
subprocess with timeout added mention of subprocess32 which has this feature for 2.x |
|
Dec 9 |
comment |
subprocess with timeout Indeed, and subprocess timeout support exists in the subprocess32 backport that I maintain for use on Python 2. pypi.python.org/pypi/subprocess32 |
|
Dec 1 |
comment |
Python Multiprocessing - Cannot Join Current Thread You may find that bugs.python.org/issue15101 is related to this and that this is fixed in what will soon be 2.7.4. |
|
Oct 5 |
answered | Using pickle.dumps to hash mutable objects |
|
Sep 29 |
suggested | suggested edit on basic math computation confusion |
|
Sep 18 |
comment |
How to stop python from propagating signals to subprocesses? Please consider using [subprocess32][1] instead of subprocess if you're using Python 2.x and do not use preexec_fn anymore. It isn't safe. Use the new Popen start_new_session=True parameter instead.
[1]: code.google.com/p/python-subprocess32 |
|
Sep 13 |
suggested | suggested edit on Drawing Shapes Using Turtle |