User DzinX - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T12:17:06Z http://stackoverflow.com/feeds/user/18745 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1736910/css-problem-with-overflow-with-div/1736969#1736969 0 Answer by DzinX for CSS Problem with Overflow with div DzinX 2009-11-15T08:15:01Z 2009-11-15T08:15:01Z <p>You can remove the <code>float:left</code> from <code>.div-image</code> CSS and add <code>display: inline</code> instead:</p> <pre><code>.div-image{ display: inline; width: 125px; } </code></pre> <p>That seems to work the way you wanted it to on your example website.</p> http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys 1 How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-09T12:47:03Z 2009-10-14T15:33:12Z <p>I want to have a database table that keeps data with revision history (like pages on Wikipedia). I thought that a good idea would be to have two columns that identify the row: <code>(name, version)</code>. So a sample table would look like this:</p> <pre><code>TABLE PERSONS: id: int, name: varchar(30), version: int, ... // some data assigned to that person. </code></pre> <p>So if users want to update person's data, they don't make an UPDATE -- instead, they create a new PERSONS row with the same <code>name</code> but different <code>version</code> value. Data shown to the user (for given <code>name</code>) is the one with highest <code>version</code>.</p> <p>I have a second table, say, DOGS, that references persons in PERSONS table:</p> <pre><code>TABLE DOGS: id: int, name: varchar(30), owner_name: varchar(30), ... </code></pre> <p>Obviously, <code>owner_name</code> is a reference to <code>PERSONS.name</code>, but I cannot declare it as a Foreign Key (in MS SQL Server), because <code>PERSONS.name</code> is not unique!</p> <p><strong>Question</strong>: How, then, in MS SQL Server 2008, should I ensure database integrity (i.e., that for each DOG, there exists at least one row in PERSONS such that its PERSON.name == DOG.owner_name)?</p> <p>I'm looking for the most elegant solution -- I know I could use triggers on PERSONS table, but this is not as declarative and elegant as I want it to be. Any ideas?</p> <p><hr /></p> <p><strong>Additional Information</strong></p> <p>The design above has the following advantage that if I need to, I can "remember" a person's current <code>id</code> (or <code>(name, version)</code> pair) and I'm sure that data in that row will never be changed. This is important e.g. if I put this person's data as part of a document that is then printed and in 5 years someone might want to print a copy of it exactly unchanged (e.g. with the same data as today), then this will be very easy for them to do.</p> <p>Maybe you can think of a completely different design that achieves the same purpose and its integrity can be enforced easier (preferably with foreign keys or other constraints)?</p> <p><hr /></p> <p><strong>Edit:</strong> Thanks to Michael Gattuso's answer, I discovered another way this relationship can be described. There are two solutions, which I posted as answers. Please vote which one you like better.</p> http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1547489#1547489 0 Answer by DzinX for How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T09:33:17Z 2009-10-10T09:33:17Z <p>Thanks to Michael Gattuso's answer, I discovered another way this relationship can be described. There are two solutions, this is the second of them. Please vote which one you like better.</p> <p><strong>Solution 2</strong></p> <p>In PERSONS table, we leave only the name (unique identifier) and a link to the <strong>first</strong> (not current!) person's data:</p> <pre><code>TABLE PERSONS: name: varchar(30), first_data_id: int </code></pre> <p>We create a new table, PERSONS_DATA, that contains all data history for that person:</p> <pre><code>TABLE PERSONS_DATA: id: int name: varchar(30) version: int (auto-generated) ... // some data, like address, etc. </code></pre> <p>DOGS table stays the same, it still points to a person's name (FK to PERSONS table).</p> <p>ADVANTAGES:</p> <ul> <li>for each dog, there exists at least one PERSONS_DATA row that contains data of its owner (that's what I wanted)</li> <li>if I want to change a person's data, I don't have to update the PERSONS row, only add a new PERSONS_DATA row</li> </ul> <p>DISADVANTAGE: to retrieve current person's data, I have to either:</p> <ul> <li>choose PERSONS_DATA with given name and highest version (may be expensive)</li> <li>choose PERSONS_DATA with special version, e.g. "-1", but then I would have to update two PERSONS_DATA rows each time I add new PERSONS_DATA, and in this solution I wanted to avoid having to update 2 rows...</li> </ul> <p>What do you think?</p> http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1547485#1547485 0 Answer by DzinX for How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T09:31:56Z 2009-10-10T09:31:56Z <p>Thanks to Michael Gattuso's answer, I discovered another way this relationship can be described. There are two solutions, this is the first of them. Please vote which one you like better.</p> <p><strong>Solution 1</strong></p> <p>In PERSONS table, we leave only the name (unique identifier) and a link to <strong>current</strong> person's data:</p> <pre><code>TABLE PERSONS: name: varchar(30), current_data_id: int </code></pre> <p>We create a new table, PERSONS_DATA, that contains all data history for that person:</p> <pre><code>TABLE PERSONS_DATA: id: int version: int (auto-generated) ... // some data, like address, etc. </code></pre> <p>DOGS table stays the same, it still points to a person's name (FK to PERSONS table).</p> <p>ADVANTAGE: for each dog, there exists at least one PERSONS_DATA row that contains data of its owner (that's what I wanted)</p> <p>DISADVANTAGE: if you want to change a person's data, you have to:</p> <ol> <li>add a new PERSONS_DATA row</li> <li>update PERSONS entry for this person to point to the new PERSONS_DATA row.</li> </ol> http://stackoverflow.com/questions/1374126/how-to-expand-javascript-array-with-another-array 2 How to expand JavaScript Array with another Array? DzinX 2009-09-03T15:27:30Z 2009-09-21T08:08:02Z <p>There doesn't seem to be a way to expand a JavaScript Array with another Array, i.e. to emulate Python's <code>expand</code> method.</p> <p>What I want to achieve is the following:</p> <pre><code>&gt;&gt;&gt; a = [1, 2] [1, 2] &gt;&gt;&gt; b = [3, 4, 5] [3, 4, 5] &gt;&gt;&gt; SOMETHING HERE &gt;&gt;&gt; a [1, 2, 3, 4, 5] </code></pre> <p>I know there's a <code>a.concat(b)</code> method, but it creates a new array instead of simply extending the first one. I'd like an algorithm that works efficiently when <code>a</code> is significantly larger than <code>b</code> (i.e. one that does not copy <code>a</code>).</p> http://stackoverflow.com/questions/1374126/how-to-expand-javascript-array-with-another-array/1374131#1374131 4 Answer by DzinX for How to expand JavaScript Array with another Array? DzinX 2009-09-03T15:27:55Z 2009-09-03T15:27:55Z <p>The best I came up with so far is:</p> <pre><code>&gt;&gt;&gt; a.push.apply(a, b) </code></pre> <p>but it feels a little like a hack. Any other suggestions?</p> http://stackoverflow.com/questions/1090863/python-operators/1090891#1090891 0 Answer by DzinX for Python operators DzinX 2009-07-07T07:46:37Z 2009-07-07T07:53:50Z <p>Just use <a href="http://docs.python.org/library/functions.html#eval" rel="nofollow">eval</a> along with string generation:</p> <pre><code>postfix_expression = "34*34*+" stack = [] for char in postfix_expression: if char in '+-*/': expression = '%d%s%d' % (stack.pop(), char, stack.pop()) stack.append(eval(expression)) else: stack.append(int(char)) print stack.pop() </code></pre> <p><strong>EDIT</strong>: made an even nicer version without the exception handling.</p> http://stackoverflow.com/questions/1087019/can-i-be-warned-when-i-used-a-generator-function-by-accident/1087249#1087249 2 Answer by DzinX for Can I be warned when I used a generator function by accident DzinX 2009-07-06T14:21:41Z 2009-07-06T14:21:41Z <p>I'll try to answer the first of your questions.</p> <p>A regular function, when called like this:</p> <pre><code>val = func() </code></pre> <p>executes its inside statements until it ends or a <code>return</code> statement is reached. Then the return value of the function is assigned to <code>val</code>.</p> <p>If a compiler recognizes the function to actually be a generator and not a regular function (it does that by looking for <code>yield</code> statements inside the function -- if there's at least one, it's a generator), the scenario when calling it the same way as above has different consequences. Upon calling <code>func()</code>, <em>no code inside the function is executed</em>, and a special <code>&lt;generator&gt;</code> value is assigned to <code>val</code>. Then, the first time you call <code>val.next()</code>, the actual statements of <code>func</code> are being executed until a <code>yield</code> or <code>return</code> is encountered, upon which the execution of the function stops, value yielded is returned and generator waits for another call to <code>val.next()</code>.</p> <p>That's why, in your example, function <code>__someFunc</code> didn't print "hello" -- its statements were not executed, because you haven't called <code>self.__someFunc().next()</code>, but only <code>self.__someFunc()</code>.</p> <p>Unfortunately, I'm pretty sure there's no built-in warning mechanism for programming errors like yours.</p> http://stackoverflow.com/questions/902039/why-can-i-not-view-my-google-app-engine-cron-admin-page/903334#903334 1 Answer by DzinX for Why can I not view my Google App Engine cron admin page? DzinX 2009-05-24T08:30:19Z 2009-05-24T08:30:19Z <p>This is definitely a bug in Google App Engine. If you check <a href="http://code.google.com/p/googleappengine/source/browse/trunk/python/google/appengine/cron/groctimespecification.py?r=54#112" rel="nofollow">groctimespecification.py</a>, you'll see that <code>IntervalTimeSpecification</code> inherits from <code>TimeSpecification</code>, which in turn inherits directly from <code>object</code> and doesn't override its <code>__init__</code> method.</p> <p>So the <code>__init__</code> of <code>IntervalTimeSpecification</code> is incorrect:</p> <pre><code>class IntervalTimeSpecification(TimeSpecification): def __init__(self, interval, period): super(IntervalTimeSpecification, self).__init__(self) </code></pre> <p>My guess is, someone converted an old-style parent class init call:</p> <pre><code>TimeSpecification.__init__(self) </code></pre> <p>to the current one, but forgot that with <code>super</code>, <code>self</code> is passed implicitly. The correct line should look like this:</p> <pre><code>super(IntervalTimeSpecification, self).__init__() </code></pre> http://stackoverflow.com/questions/903144/how-to-implement-hotlinking-prevention-in-google-app-engine/903307#903307 3 Answer by DzinX for How to implement hotlinking prevention in Google App Engine DzinX 2009-05-24T08:02:20Z 2009-05-24T08:02:20Z <p>In Google webapp framework, you can extract the referer from the <a href="http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html" rel="nofollow">Request class</a>:</p> <pre><code>def get(self): referer = self.request.headers.get("Referer") # Will be None if no referer given in header. </code></pre> <p>Note that's <code>referer</code>, not <code>referrer</code> (see <a href="http://dictionary.reference.com/browse/referer" rel="nofollow">this dictionary entry</a>).</p> http://stackoverflow.com/questions/849806/is-there-a-way-to-set-multiple-defaults-on-a-python-dict-using-another-dict/849856#849856 2 Answer by DzinX for Is there a way to set multiple defaults on a Python dict using another dict? DzinX 2009-05-11T20:08:06Z 2009-05-11T20:08:06Z <p>If you don't mind creating a new dictionary in the process, this will do the trick:</p> <pre><code>newdict = dict(defaults) newdict.update(mydict) </code></pre> <p>Now <code>newdict</code> contains what you need.</p> http://stackoverflow.com/questions/778965/generating-unique-and-opaque-user-ids-in-google-app-engine/779600#779600 1 Answer by DzinX for Generating unique and opaque user IDs in Google App Engine DzinX 2009-04-22T22:56:35Z 2009-04-22T22:56:35Z <p>I think you should distinguish between two types of users:</p> <p>1) users that have logged in via Google Accounts or that have already registered on your site with a non-google e-mail address</p> <p>2) users that opened your site for the first time and are not logged in in any way</p> <p>For the second case, I can see no other way than to generate some random string (e.g. via <code>uuid.uuid4()</code> or from this user's session cookie key), as an anonymous user does not carry any unique information with himself.</p> <p>For users that are logged in, however, you already have a unique identifier -- their e-mail address. I agree with your privacy concerns -- you shouldn't use it as an identifier. Instead, how about generating a string that <em>seems</em> random, but is in fact generated from the e-mail address? Hashing functions are perfect for this purpose. Example:</p> <pre><code>&gt;&gt;&gt; import hashlib &gt;&gt;&gt; email = 'user@host.com' &gt;&gt;&gt; salt = 'SomeLongStringThatWillBeAppendedToEachEmail' &gt;&gt;&gt; key = hashlib.sha1('%s$%s' % (email, salt)).hexdigest() &gt;&gt;&gt; print key f6cd3459f9a39c97635c652884b3e328f05be0f7 </code></pre> <p>As <code>hashlib.sha1</code> is not a random function, but for given data returns always the same result, but it is proven to be practically irreversible, you can safely present the hashed key on the website without compromising user's e-mail address. Also, you can safely assume that no two hashes of distinct e-mails will be the same (they can be, but probability of it happening is very, very small). For more information on hashing functions, consult <a href="http://en.wikipedia.org/wiki/Cryptographic%5Fhash%5Ffunction" rel="nofollow">the Wikipedia entry</a>.</p> http://stackoverflow.com/questions/693630/alter-all-values-in-a-python-list-of-lists/693682#693682 1 Answer by DzinX for Alter all values in a Python list of lists? DzinX 2009-03-28T22:43:35Z 2009-03-29T15:32:35Z <p>Although Constantin's answer is correct, I would make two improvements:</p> <ol> <li>Generality is not always the best way. What if the altering function should work on lists?</li> <li>Using <code>enumerate</code> and indexing is not as fast as creating a list copy and assigning it in-place using <code>[:]</code> slicing.</li> </ol> <p>So here's my alternative, which also modifies the list and all inner lists in-place:</p> <pre><code>def lst_apply(lst, func, lvl): if lvl: for x in lst: lst_apply(x, func, lvl - 1) else: lst[:] = [func(x) for x in lst] &gt;&gt;&gt; lst_apply(my_list, lambda x: -x, 1) &gt;&gt;&gt; my_list [[-1, -2, -3], [-4, -5, -6], [-7, -8, -9]] </code></pre> <p>I still believe, though, that the best approach here is:</p> <pre><code>def simple_apply(lst, func): lst[:] = [[func(x) for x in y] for y in lst] </code></pre> <p><code>timeit</code> results:</p> <ul> <li><code>simple_apply</code>: 4.0s</li> <li><code>lst_apply</code>: 5.4s</li> <li><code>alter_elements</code>: 11.5s</li> </ul> http://stackoverflow.com/questions/693826/best-practice-for-two-way-hashing-in-python/694304#694304 5 Answer by DzinX for Best practice for two way hashing in python? DzinX 2009-03-29T08:18:36Z 2009-03-29T08:18:36Z <p>Your best choice is to generate a hash (one-way function) of some of the user's data. For example, to generate a hash of user's row id, you could use something like:</p> <pre><code>&gt;&gt;&gt; import hashlib &gt;&gt;&gt; hashlib.sha1('3').hexdigest() '77de68daecd823babbb58edb1c8e14d7106e83bb' </code></pre> <p>However, basing your pseudorandom string only on a row id is not very secure, as the user could easily reverse the hash (try <a href="http://www.google.pl/search?q=77de68daecd823babbb58edb1c8e14d7106e83bb" rel="nofollow">googling 77de68daecd823babbb58edb1c8e14d7106e83bb</a>) of such a short string.</p> <p>A simple solution here is to "salt" the hashed string, i.e. add the same secret string to every value that is hashed. For example:</p> <pre><code>&gt;&gt;&gt; hashlib.sha1('3' + 'email@of.user' + 'somestringconstant').hexdigest() 'b3ca694a9987f39783a324f00cfe8279601decd3' </code></pre> <p>If you <a href="http://www.google.pl/search?q=b3ca694a9987f39783a324f00cfe8279601decd3" rel="nofollow">google b3ca694a9987f39783a324f00cfe8279601decd3</a>, probably the only result will be a link to this answer :-), which is not a proof, but a good hint that this hash is quite unique.</p> http://stackoverflow.com/questions/652276/is-it-possible-to-create-anonymous-objects-in-python/652417#652417 6 Answer by DzinX for Is it possible to create anonymous objects in Python? DzinX 2009-03-16T22:40:38Z 2009-03-16T22:40:38Z <p>I like Tetha's solution, but it's unnecessarily complex. Here's something simpler:</p> <pre><code>&gt;&gt;&gt; class MicroMock(object): &gt;&gt;&gt; def __init__(self, **kwargs): &gt;&gt;&gt; self.__dict__.update(kwargs) &gt;&gt;&gt; &gt;&gt;&gt; print_foo(MicroMock(foo=3)) 3 </code></pre> http://stackoverflow.com/questions/648679/print-out-list-of-function-parameters-in-python/648689#648689 15 Answer by DzinX for Print out list of function parameters in Python DzinX 2009-03-15T22:27:58Z 2009-03-15T22:27:58Z <p>Use the inspect module.</p> <pre><code>&gt;&gt;&gt; import inspect &gt;&gt;&gt; inspect.getargspec(func) (['a', 'b', 'c'], None, None, None) </code></pre> <p>The first part of returned tuple is what you're looking for.</p> http://stackoverflow.com/questions/641770/can-3d-opengl-game-written-in-python-look-good-and-run-fast/641907#641907 1 Answer by DzinX for Can 3D OpenGL game written in Python look good and run fast? DzinX 2009-03-13T09:15:55Z 2009-03-13T09:15:55Z <p>Check out the <a href="http://fretsonfire.sourceforge.net/screenshots/" rel="nofollow">Frets on Fire</a> project -- an open source Guitar Hero alternative. It's written in Python and has decent 3D graphics in OpenGL. I would suggest checking out <a href="http://fretsonfire.sourceforge.net/documentation/source/" rel="nofollow">its sources</a> for hints on libraries etc.</p> http://stackoverflow.com/questions/623384/how-can-i-insert-rtf-into-a-wxpython-richtextctrl/623449#623449 2 Answer by DzinX for How can I insert RTF into a wxpython RichTextCtrl? DzinX 2009-03-08T11:42:26Z 2009-03-08T11:42:26Z <p><strong>No.</strong> As authors admit in <a href="http://docs.wxwidgets.org/stable/wx%5Fwxrichtextctrloverview.html#topic17" rel="nofollow">wxRichTextCtrl roadmap</a>:</p> <blockquote> <p>This is a list of some of the features that have yet to be implemented. Help with them will be appreciated.</p> <ul> <li>RTF input and output </li> </ul> </blockquote> http://stackoverflow.com/questions/622417/how-to-change-cursor-position-of-wxrichtextctrl-in-event-handler/623292#623292 2 Answer by DzinX for How to change cursor position of wxRichTextCtrl in event handler? DzinX 2009-03-08T09:00:18Z 2009-03-08T10:22:37Z <p>Apparently, there are two problems with your code:</p> <ol> <li><p>You listen on <code>EVT_KEY_DOWN</code>, which is probably handled before <code>EVT_TEXT</code>, whose default handler sets the cursor position.</p></li> <li><p>You modify the <code>Caret</code> object instead of using <code>SetInsertionPoint</code> method, which both moves the caret and makes the next character appear in given place.</p></li> </ol> <p>So the working example (I tested it and it works as you would like it to) would be:</p> <pre><code># Somewhere in __init__: self.rich.Bind(wx.EVT_TEXT, self.onClick) def onClick(self, event): self.rich.SetInsertionPoint(0) # No refresh necessary. event.Skip() </code></pre> <p><hr /></p> <p><strong>EDIT</strong>: if you want the text to be added at the end, but the cursor to remain at the beginning (see comments), you can take advantage of the fact that <code>EVT_KEY_DOWN</code> is handled before <code>EVT_TEXT</code> (which in turn is handled after character addition). So the order of events is:</p> <ol> <li>handle <code>EVT_KEY_DOWN</code></li> <li>add character at current insertion point</li> <li>handle <code>EVT_TEXT</code></li> </ol> <p>Adding a handler of <code>EVT_KEY_DOWN</code> that moves the insertion point to the end just before actually adding the character does the job quite nicely. So, in addition to the code mentioned earlier, write:</p> <pre><code># Somewhere in __init__: self.rich.Bind(wx.EVT_KEY_DOWN, self.onKeyDown) def onKeyDown(self, event): self.rich.SetInsertionPointEnd() event.Skip() </code></pre> <p>By the way, <code>event.Skip()</code> does not immediately invoke next event handler, it justs sets a flag in the <code>event</code> object, so that event processor knows whether to stop propagating the event after this handler.</p> http://stackoverflow.com/questions/620305/convert-year-month-day-to-day-of-year-in-python/623312#623312 9 Answer by DzinX for Convert Year/Month/Day to Day of Year in Python DzinX 2009-03-08T09:27:24Z 2009-03-08T09:27:24Z <p>There is a very simple solution:</p> <pre><code>day_of_year = datetime.now().timetuple().tm_yday </code></pre> http://stackoverflow.com/questions/621321/how-to-print-tuples-of-unicode-strings-in-original-language-not-ufoo-form/621792#621792 3 Answer by DzinX for How to print tuples of unicode strings in original language (not u'foo' form) DzinX 2009-03-07T12:45:51Z 2009-03-07T12:45:51Z <p>First, there's a slight misunderstanding in your post. If you define a list like this:</p> <pre><code>&gt;&gt;&gt; t = [('亀',), ('犬',)] </code></pre> <p>...those are not <code>unicode</code>s you define, but <code>str</code>s. If you want to have <code>unicode</code> types, you have to add a <code>u</code> before the character:</p> <pre><code>&gt;&gt;&gt; t = [(u'亀',), (u'犬',)] </code></pre> <p>But let's assume you actually want <code>str</code>s, not <code>unicode</code>s. The main problem is, <code>__str__</code> method of a list (or a tuple) is practically equal to its <code>__repr__</code> method (which returns a string that, when evaluated, would create exactly the same object). Because <code>__repr__</code> method should be encoding-independent, strings are represented in the safest mode possible, i.e. each character outside of ASCII range is represented as a hex character (<code>\xe4</code>, for example).</p> <p>Unfortunately, as far as I know, there's no library method for printing a list that is locale-aware. You could use an almost-general-purpose function like this:</p> <pre><code>def collection_str(collection): if isinstance(collection, list): brackets = '[%s]' single_add = '' elif isinstance(collection, tuple): brackets = '(%s)' single_add =',' else: return str(collection) items = ', '.join([collection_str(x) for x in collection]) if len(collection) == 1: items += single_add return brackets % items &gt;&gt;&gt; print collection_str(t) [('亀',), ('犬',)] </code></pre> <p>Note that this won't work for all possible collections (sets and dictionaries, for example), but it's easy to extend it to handle those.</p> http://stackoverflow.com/questions/598821/wxpython-dialogs/599609#599609 1 Answer by DzinX for wxPython dialogs DzinX 2009-03-01T10:27:34Z 2009-03-01T10:27:34Z <p>Arguments like <code>wx.ICON_ERROR</code> or <code>wx.ICON_EXCLAMATION</code> are not real icons, but rather integer flags for <code>wx.MessageDialog</code> constructor. Those message dialogs are rendered natively with operating system calls, so they look differently e.g. on Windows and Mac OS X.</p> <p>As wxWidgets was designed for Windows API, <code>MessageDialog</code> arguments closely resemble Windows API <a href="http://msdn.microsoft.com/en-us/library/ms645505.aspx" rel="nofollow">MessageBox function</a> style flags (<code>MB_ICONERROR</code>, <code>MB_ICONEXCLAMATION</code>, etc.).</p> <p>If you want to use your own icons for dialogs, you just have to implement your own message dialog class, basing on <code>wx.Dialog</code>.</p> http://stackoverflow.com/questions/530530/python-2-x-gotchas-and-landmines/531327#531327 17 Answer by DzinX for Python 2.x gotcha's and landmines DzinX 2009-02-10T07:12:07Z 2009-02-10T07:12:07Z <p>You should be aware of how class variables are handled in Python. Consider the following class hierarchy:</p> <pre><code>class AAA(object): x = 1 class BBB(AAA): pass class CCC(AAA): pass </code></pre> <p>Now, check the output of the following code:</p> <pre><code>&gt;&gt;&gt; print AAA.x, BBB.x, CCC.x 1 1 1 &gt;&gt;&gt; BBB.x = 2 &gt;&gt;&gt; print AAA.x, BBB.x, CCC.x 1 2 1 &gt;&gt;&gt; AAA.x = 3 &gt;&gt;&gt; print AAA.x, BBB.x, CCC.x 3 2 3 </code></pre> <p>Surprised? You won't be if you remember that class variables are internally handled as dictionaries of a class object. If a variable name is not found in the dictionary of current class, the parent classes are searched for it. So, the following code again, but with explanations:</p> <pre><code># AAA: {'x': 1}, BBB: {}, CCC: {} &gt;&gt;&gt; print AAA.x, BBB.x, CCC.x 1 1 1 &gt;&gt;&gt; BBB.x = 2 # AAA: {'x': 1}, BBB: {'x': 2}, CCC: {} &gt;&gt;&gt; print AAA.x, BBB.x, CCC.x 1 2 1 &gt;&gt;&gt; AAA.x = 3 # AAA: {'x': 3}, BBB: {'x': 2}, CCC: {} &gt;&gt;&gt; print AAA.x, BBB.x, CCC.x 3 2 3 </code></pre> <p>Same goes for handling class variables in class instances (treat this example as a continuation of the one above):</p> <pre><code>&gt;&gt;&gt; a = AAA() # a: {}, AAA: {'x': 3} &gt;&gt;&gt; print a.x, AAA.x 3 3 &gt;&gt;&gt; a.x = 4 # a: {'x': 4}, AAA: {'x': 3} &gt;&gt;&gt; print a.x, AAA.x 4 3 </code></pre> http://stackoverflow.com/questions/516039/most-pythonic-way-to-extend-a-potentially-incomplete-list/516671#516671 2 Answer by DzinX for Most pythonic way to extend a potentially incomplete list DzinX 2009-02-05T16:30:29Z 2009-02-05T16:30:29Z <p>Simplest and most pythonic for me is:</p> <pre><code>repl = lambda i: "Choice %d" % (i + 1) # DRY print ([(x or repl(i)) for i, x in enumerate(aList)] + [repl(i) for i in xrange(len(aList), 9)]) </code></pre> http://stackoverflow.com/questions/510443/using-python-ctypes-for-ssdeeps-fuzzy-dll-but-receive-error-solved/511749#511749 3 Answer by DzinX for Using Python Ctypes for ssdeep's fuzzy.dll but receive Error [SOLVED] DzinX 2009-02-04T15:09:27Z 2009-02-04T15:09:27Z <p>There are two problems with your code:</p> <ol> <li><p>You should not use <code>windll.fuzzy</code>, but <code>cdll.fuzzy</code> -- from <a href="http://docs.python.org/library/ctypes.html#loading-dynamic-link-libraries" rel="nofollow">ctypes documentation</a>:</p> <blockquote> <p>cdll loads libraries which export functions using the standard cdecl calling convention, while windll libraries call functions using the stdcall calling convention.</p> </blockquote></li> <li><p>For return value (<code>chash</code>), you should declare a buffer rather than creating a pointer to <code>0x0000200</code> (=512) -- this is where the access violation comes from. Use <code>create_string_buffer('\000' * 512)</code> instead.</p></li> </ol> <p>So your example should look like this:</p> <pre><code>&gt;&gt;&gt; import os, sys &gt;&gt;&gt; from ctypes import * &gt;&gt;&gt; fn = create_string_buffer(os.path.abspath("fuzzy.def")) &gt;&gt;&gt; fuzz = cdll.fuzzy &gt;&gt;&gt; chash = create_string_buffer('\000' * 512) &gt;&gt;&gt; hstat = fuzz.fuzzy_hash_filename(fn,chash) &gt;&gt;&gt; print hstat 0 # == success </code></pre> http://stackoverflow.com/questions/511204/how-to-print-a-string-without-including-n-in-python/511272#511272 1 Answer by DzinX for How to print a string without including '\n' in Python DzinX 2009-02-04T13:10:24Z 2009-02-04T13:10:24Z <pre><code>&gt;&gt;&gt; 'Hai Hello\nGood eve\n'.replace('\n', ' ') 'Hai Hello Good eve ' </code></pre> http://stackoverflow.com/questions/508277/is-there-a-good-dependency-analysis-tool-for-python/509194#509194 5 Answer by DzinX for Is there a good dependency analysis tool for Python? DzinX 2009-02-03T22:26:13Z 2009-02-04T07:00:50Z <p>I recommend using <a href="http://furius.ca/snakefood/" rel="nofollow">snakefood</a> for creating graphical dependency graphs of Python projects. It detects dependencies nicely enough to immediately see areas for refactorisation. Its usage is pretty straightforward if you read a little bit of documentation.</p> <p>Of course, you can omit the graph-creation step and receive a dependency dictionary in a file instead.</p> http://stackoverflow.com/questions/499964/how-do-you-create-python-methodssignature-and-content-in-code/499978#499978 2 Answer by DzinX for How do you create python methods(signature and content) in code? DzinX 2009-02-01T01:23:47Z 2009-02-01T01:23:47Z <p>Python code behaves like this for functions defined in scope of methods. Use this instead:</p> <pre><code>for image_name in image_fields: print "image name is: ", image_name setattr(new_form, 'clean_' + image_name, lambda self, iname=image_name: self._clean_photo(iname)) </code></pre> <p>The usage of default keyword argument makes Python remember it at the time of lambda function creation rather than at the time of its calling (when it would always take the last image).</p> http://stackoverflow.com/questions/489720/what-are-some-common-uses-for-python-decorators/489735#489735 3 Answer by DzinX for What are some common uses for Python decorators? DzinX 2009-01-28T22:38:14Z 2009-01-28T22:38:14Z <p>I use them mainly for debugging (wrapper around a function that prints its arguments and result) and verification (e.g. to check if an argument is of correct type or, in the case of web application, if the user has sufficient privileges to call a particular method).</p> http://stackoverflow.com/questions/297294/integrating-command-line-generated-python-coverage-files-with-pydev/489721#489721 3 Answer by DzinX for Integrating command-line generated python .coverage files with PyDev DzinX 2009-01-28T22:35:08Z 2009-01-28T22:35:08Z <p>I needed exactly something like this some time ago, when PyDev still used an older version of <code>coverage.py</code> than the one accessible from the script creator's page.</p> <p>What I did was detecting where PyDev was saving his <code>.coverage</code> file. For me it was:</p> <pre><code> C:\Users\Admin\workspace\.metadata\.plugins\org.python.pydev.debug\.coverage </code></pre> <p>Then I manually ran a new version of <code>coverage.py</code> from a separate script and told it to save its .coverage file in the place where PyDev saves its. I cannot remember if there is a command-line argument to <code>coverage.py</code> or if I simply copied the <code>.coverage</code> file with a script, but after that, if you simply open the <strong>Code Coverage Results View</strong> and click <strong>Refresh coverage information!</strong>, PyDev will nicely process the data as if it generated the file itself.</p> http://stackoverflow.com/questions/1736885/python-indexerror-list-assignment-index-out-of-range Comment by DzinX on Python: IndexError: list assignment index out of range DzinX 2009-11-15T07:54:36Z 2009-11-15T07:54:36Z @inspectorG4dget: It's in collections, see <a href="http://docs.python.org/library/collections.html#defaultdict-objects" rel="nofollow">docs.python.org/library/&hellip;</a> http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1556246#1556246 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-13T10:05:50Z 2009-10-13T10:05:50Z Wonderful! A little too much data in child table, but definitely worth it -- brings simplicity and order to the design. Thanks! http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543591#1543591 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T09:16:02Z 2009-10-10T09:16:02Z Yeah, I could do that, but then I should keep the current data in two copies: one in CurrentPerson, and one (with highest version) in PersonHistory, so that I don't have to switch between tables when pointing to a person from a document to be printed. This means that I have to make sure that these two entries contain the same data... that's it! Your solution gave me a good idea! Thanks! I'll post it as a separate answer. http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543634#1543634 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T09:08:40Z 2009-10-10T09:08:40Z I don't like the way you have to update PersonsWithDogs each time you change Person's info. This way, I could have my 2 starting tables and have DOGS.owner_id instead of DOGS.owner_name and update this id on each person's change. This can be costly if a person has many dogs. http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543606#1543606 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T09:04:59Z 2009-10-10T09:04:59Z Hmm from what I see, I now have four tables and still no guarantee that there exists a Details row that corresponds to a Dog row. Am I missing something? http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543590#1543590 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T08:55:40Z 2009-10-10T08:55:40Z Quote: &quot;I thought that a good idea would be to have two columns that identify the row: (name, version).&quot; That aside, from what I see, your solution is similar to Mark's and suffers from the same problem: there's no guarantee that there exists at least one PersonVersion for each Dog (linked through Persons table). Can this be fixed somehow? http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543565#1543565 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T08:51:26Z 2009-10-10T08:51:26Z Could you explain this in more detail? Is your solution similar to Mark's? http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543560#1543560 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-10T08:45:33Z 2009-10-10T08:45:33Z Hmm I may be missing something, but, for solution 1), doesn't this mean we can have a Dog with an enforced UniquePerson, but no Person linking to this UniquePerson? http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543590#1543590 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-09T13:56:26Z 2009-10-09T13:56:26Z It is, as the (name, version) pair implies id and vice versa, so I can discard either id or version (because name is referenced by DOGS table). I want to keep the version for reasons explained in my post, so the only thing I can discard is id. But this doesn't help me at all! I can't see the solution you have in mind. What normalization would you apply to my tables and how would it help? http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543590#1543590 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-09T13:23:08Z 2009-10-09T13:23:08Z Ouch, that hurt! FYI, I understand very well what normalization means. If you have an idea how to solve my problem, please explain it in more detail and maybe provide at least a part of a solution. http://stackoverflow.com/questions/1543551/how-to-enforce-db-integrity-with-non-unique-foreign-keys/1543590#1543590 Comment by DzinX on How to enforce DB integrity with non-unique foreign keys? DzinX 2009-10-09T13:10:46Z 2009-10-09T13:10:46Z First, as for normalization, OK, I can throw away &quot;PERSONS.id&quot;, but that won't solve my problem at all. Second, if DOGS.owner would reference PERSONS.id, it would point to a person with fixed version, not the latest, which is exactly what I want to avoid. http://stackoverflow.com/questions/1374126/how-to-expand-javascript-array-with-another-array/1374342#1374342 Comment by DzinX on How to expand JavaScript Array with another Array? DzinX 2009-09-04T08:00:26Z 2009-09-04T08:00:26Z Did you even try to execute your code? It does not work, as concat does not modify array 'a'. http://stackoverflow.com/questions/1090863/python-operators/1090891#1090891 Comment by DzinX on Python operators DzinX 2009-07-07T08:14:42Z 2009-07-07T08:14:42Z I don't know about slowness. It can be dangerous (i.e. unsafe) if not very carefully used, but here it's perfectly safe as all input is checked (integers or a limited character set). http://stackoverflow.com/questions/852055/build-a-gql-query-for-google-app-engine-that-has-a-condition-on-referenceproper/852530#852530 Comment by DzinX on Build a GQL query (for Google App Engine) that has a condition on ReferenceProperty DzinX 2009-05-13T14:14:19Z 2009-05-13T14:14:19Z You're right, of course. I was just trying to conform to OP's code. http://stackoverflow.com/questions/652276/is-it-possible-to-create-anonymous-objects-in-python/652417#652417 Comment by DzinX on Is it possible to create anonymous objects in Python? DzinX 2009-03-17T16:16:11Z 2009-03-17T16:16:11Z You're right, there's no significant simplification. It's just shorter and doesn't use <b>new</b>, that's all.