| bio | website | hell.orts.ru |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 years, 3 months |
| seen | 20 hours ago | |
| stats | profile views | 48 |
|
May 2 |
accepted | Security against backward-changes in git? |
|
May 1 |
comment |
Security against backward-changes in git? “to make Git accept it” — so, you are saying that git checks that contents of the blob match the identifier-hash of the blob? |
|
May 1 |
comment |
Security against backward-changes in git? Not necessarily in the context of code. Not necessarily as commits: for example, is it possible to change some older commits without causing a conflict on update? |
|
May 1 |
asked | Security against backward-changes in git? |
|
Feb 20 |
awarded | Yearling |
|
Jan 29 |
accepted | Why Twisted Manhole ConnectionDone is an error? |
|
Jan 29 |
comment |
Why Twisted Manhole ConnectionDone is an error? It's error, though, not errors. Anyway, subclassing TelnetTransport with that helps; but really, I can't imagine the reason for the twistedmatrix.com/trac/browser/trunk/twisted/conch/… part (options processing on connectionLost? huh) |
|
Jan 27 |
comment |
Why Twisted Manhole ConnectionDone is an error? Is ConnectionDone the only such special case, or there are some others? |
|
Jan 25 |
asked | Why Twisted Manhole ConnectionDone is an error? |
|
Dec 16 |
comment |
In Python, how to I iterate over a dictionary in sorted order? Is it possible to optimize it in case both getitem and sorted iteration are very frequently needed? |
|
Dec 11 |
comment |
Markup Language for Surveys/Questionnaires … when it's XML it's better to throw in another language layer on top (similar to HAML). |
|
Nov 21 |
answered | Misleading(?) TypeError when passing keyword arguments to function defined with positional arguments |
|
Nov 21 |
comment |
Misleading(?) TypeError when passing keyword arguments to function defined with positional arguments What about making a call wrapper that would catch such error and raise a more appropriate error? I've tried doing that but there's huge amount of little problematic details; has anyone else tried? (also, I wonder why it's not done in the default CPython) |
|
Nov 20 |
awarded | Good Answer |
|
Nov 14 |
revised |
pylzma stream (de)compression buffer size edited tags |
|
Nov 13 |
asked | pylzma stream (de)compression buffer size |
|
Nov 13 |
comment |
Getting the index of the returned max or min item using max()/min() on a listreversed(…) instead of ….reverse() is likely preferable as it doesn't mutate and returns a generator anyway. And all occurrences could also be minv = min(values); indices = [i for i, v in enumerate(values) if v == minv] |
|
Nov 12 |
comment |
python-twisted: fork for background non-returning processing @Glyph, any references on how it is broken? |
|
Nov 2 |
comment |
python-twisted: fork for background non-returning processing I don't have any problems making it persist in general. I'm interested in trying to make it atomic-like in more ways. And no, it doesn't seem to me at all that os.fork is broken. It works quite well in many cases (and also all over the multiprocessing) and can be used to process, for example, large numpy arrays with python code on multiple cores without duplicating them in memory. And it can be used the OP way pretty well, but I'm trying to figure out how to do that better. |
|
Nov 2 |
comment |
python-twisted: fork for background non-returning processing As I've noted, I need access to the data in parent process (to the snapshot of the data, even. Which seems to be exactly what fork() provides). Which means, spawning a process from an executable is not useful in here. |