User NicDumZ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T05:25:44Z http://stackoverflow.com/feeds/user/115023 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1871522/mercurial-how-do-i-create-a-zip-of-files-changed-between-two-revisions/1872642#1872642 1 Answer by NicDumZ for Mercurial - How do I create a .zip of files changed between two revisions? NicDumZ 2009-12-09T09:29:02Z 2009-12-09T09:29:02Z <p>Well. <code>hg export $base:tip &gt; patch.diff</code> will produce a standard patch file, readable by most tools around.</p> <p>In particular, the GNU <code>patch</code> command can apply the whole patch against the previous files. Isn't it enough? I dont see why you would need the set of files: to me, applying a patch seems easier than extracting files from a zip and copying them to the right place. <em>Plus</em>, if your collaborator has local changes, you will overwrite them. You're not using a Version Control tool to bluntly force the other person to merge <em>manually</em> the changes, right? Let <code>patch</code> deal with that, honestly :)</p> http://stackoverflow.com/questions/1692388/python-list-of-dict-if-exists-increment-a-dict-value-if-not-append-a-new-dict/1692419#1692419 2 Answer by NicDumZ for Python : List of dict, if exists increment a dict value, if not append a new dict NicDumZ 2009-11-07T08:26:21Z 2009-11-07T08:32:23Z <p>To do it exactly your way? You could use the for...else structure</p> <pre><code>for url in list_of_urls: for url_dict in urls: if url_dict['url'] == url: url_dict['nbr'] += 1 break else: urls.append(dict(url=url, nbr=1)) </code></pre> <p>But it is quite inelegant. Do you really have to store the visited urls as a LIST? If you sort it as a dict, indexed by url string, for example, it would be way cleaner:</p> <pre><code>urls = {'http://www.google.fr/': dict(url='http://www.google.fr/', nbr=1)} for url in list_of_urls: if url in urls: urls[url]['nbr'] += 1 else: urls[url] = dict(url=url, nbr=1) </code></pre> <p>A few things to note in that second example:</p> <ul> <li>see how using a dict for <code>urls</code> removes the need for going through the whole <code>urls</code> list when testing for one single <code>url</code>. This approach will be faster.</li> <li>Using <code>dict( )</code> instead of braces makes your code shorter</li> <li>using <code>list_of_urls</code>, <code>urls</code> and <code>url</code> as variable names make the code quite hard to parse. It's better to find something clearer, such as <code>urls_to_visit</code>, <code>urls_already_visited</code> and <code>current_url</code>. I know, it's longer. But it's clearer.</li> </ul> <p>And of course I'm assuming that <code>dict(url='<a href="http://www.google.fr" rel="nofollow">http://www.google.fr</a>', nbr=1)</code> is a simplification of your own data structure, because otherwise, <code>urls</code> could simply be:</p> <pre><code>urls = {'http://www.google.fr':1} for url in list_of_urls: if url in urls: urls[url] += 1 else: urls[url] = 1 </code></pre> <p>Which can get very elegant with the <a href="http://docs.python.org/library/collections.html#collections.defaultdict" rel="nofollow">defaultdict</a> stance:</p> <pre><code>urls = collections.defaultdict(int) for url in list_of_urls: urls[url] += 1 </code></pre> http://stackoverflow.com/questions/1679798/how-to-open-a-file-with-the-standard-application/1679895#1679895 8 Answer by NicDumZ for How to open a file with the standard application? NicDumZ 2009-11-05T11:19:33Z 2009-11-05T11:19:33Z <p><a href="http://docs.python.org/library/os.html#os.startfile" rel="nofollow">os.startfile</a> is only available for windows for now, but <a href="http://portland.freedesktop.org/xdg-utils-1.0/xdg-open.html" rel="nofollow">xdg-open</a> will be available on any unix client running X.</p> <pre><code>if sys.platform is 'linux2': subprocess.call(["xdg-open", file]) else: os.startfile(file) </code></pre> http://stackoverflow.com/questions/1611409/tools-modules-to-generate-advanced-reports-from-unittest-testresult 0 Tools/Modules to generate advanced reports from unittest.TestResult? NicDumZ 2009-10-23T04:46:16Z 2009-10-23T05:42:35Z <p>Hello folks!</p> <p>I am not satisfied by the text-formatting we use at my company for our unittest outputs, because it does not allow me to see, say, that a Test NEVER ever passed, or that a specific Test passed for the first time during that testRun. The current output does not allow me to have a clear view of the situation:</p> <pre><code>All tests: 4*** Failures: xx Errors: yy The following tests failed: [huge, long, traceback list ] </code></pre> <p>I am <strong>not</strong> looking for a builder. We have our own in-house tools to launch builds.</p> <p>I am looking for some tool that would take <a href="http://docs.python.org/library/unittest.html#testresult-objects" rel="nofollow">TestResult</a> objects, and generate reports from this. (or perhaps a module sub-classing TestResult?). </p> <p>Desired features? Per-test history graph; HTML report of last X test runs, actually <em>any</em> graphical output would be better than the current one. </p> <p>Only requirement? It has to be free (as in, Open Source.) Of course I could spend time to write yet another solution by myself, but why re-invent wheel? I could try and/or improve existing solutions.</p> <p>I am willing to spend some time to convert TestResult objects to XML data, if you have interesting non Python-specific suggestions.</p> <p><strong>Edit</strong>: it seems that <code>_XMLTestResult</code> from <code>XMLRunner</code> found <a href="http://www.rittau.org/python/" rel="nofollow">here</a> would easily allow me to convert data to JUnit XML.</p> http://stackoverflow.com/questions/1523874/reasons-to-use-distutils-when-packaging-c-python-project/1525194#1525194 1 Answer by NicDumZ for Reasons to use distutils when packaging C/Python project NicDumZ 2009-10-06T12:07:21Z 2009-10-06T12:07:21Z <p>Because it uses an unified <code>python setup.py install</code> command? distutils, or setuptools? Whatever, just use one of those.</p> <p>For development, it's also really useful because you don't have to care where to find such and such dependency. As long as it's standard Python/basic system library stuff, <code>setup.py</code> should find it for you. With <code>setup.py</code>, you don't require anymore <code>./configure</code> stuff or ugly autotools to create huge Makefiles. <em>It just works</em> (tm)</p> http://stackoverflow.com/questions/1483108/regex-for-character-appearing-at-most-once/1483117#1483117 6 Answer by NicDumZ for regex for character appearing at most once NicDumZ 2009-09-27T08:37:37Z 2009-09-27T09:07:13Z <pre><code>[^.]*\.?[^.]*$ </code></pre> <p>And be sure to <code>match</code>, don't <code>search</code></p> <pre><code>&gt;&gt;&gt; dot = re.compile("[^.]*\.[^.]*$") &gt;&gt;&gt; dot.match("fooooooooooooo.bar") &lt;_sre.SRE_Match object at 0xb7651838&gt; &gt;&gt;&gt; dot.match("fooooooooooooo.bar.sad") is None True &gt;&gt;&gt; </code></pre> <p><strong>Edit</strong>:</p> <p>If you consider only integers and decimals, it's even easier:</p> <pre><code>def valid(s): return re.match('[0-9]+(\.[0-9]*)?$', s) is not None assert valid("42") assert valid("13.37") assert valid("1.") assert not valid("1.2.3.4") assert not valid("abcd") </code></pre> http://stackoverflow.com/questions/1483085/decypher-with-me-that-obfuscated-multiplierfactory 2 decypher with me that obfuscated MultiplierFactory NicDumZ 2009-09-27T08:11:24Z 2009-09-27T08:49:53Z <p>This week on comp.lang.python, an "interesting" piece of code was <a href="http://groups.google.com/group/comp.lang.python/msg/fbd486398fcff81b" rel="nofollow">posted</a> by Steven D'Aprano as a joke answer to an homework question. Here it is:</p> <pre><code>class MultiplierFactory(object): def __init__(self, factor=1): self.__factor = factor @property def factor(self): return getattr(self, '_%s__factor' % self.__class__.__name__) def __call__(self, factor=None): if not factor is not None is True: factor = self.factor class Multiplier(object): def __init__(self, factor=None): self.__factor = factor @property def factor(self): return getattr(self, '_%s__factor' % self.__class__.__name__) def __call__(self, n): return self.factor*n Multiplier.__init__.im_func.func_defaults = (factor,) return Multiplier(factor) twice = MultiplierFactory(2)() </code></pre> <p>We know that <code>twice</code> is an equivalent to the answer:</p> <pre><code>def twice(x): return 2*x </code></pre> <p>From the names <code>Multiplier</code> and <code>MultiplierFactory</code> we get an idea of what's the code doing, but we're not sure of the exact internals. Let's simplify it first.</p> <h2>Logic</h2> <pre><code>if not factor is not None is True: factor = self.factor </code></pre> <p><code>not factor is not None is True</code> is equivalent to <code>not factor is not None</code>, which is also <code>factor is None</code>. Result:</p> <pre><code>if factor is None: factor = self.factor </code></pre> <p>Until now, that was easy :)</p> <h2>Attribute access</h2> <p>Another interesting point is the curious <code>factor</code> accessor.</p> <pre><code>def factor(self): return getattr(self, '_%s__factor' % self.__class__.__name__) </code></pre> <p>During initialization of <code>MultiplierFactory</code>, <code>self.__factor</code> is set. But later on, the code accesses <code>self.factor</code>.</p> <p>It then seems that:</p> <pre><code>getattr(self, '_%s__factor' % self.__class__.__name__) </code></pre> <p>Is doing exactly "<code>self.__factor</code>". </p> <p><strong><em>Can we always access attributes in this fashion?</em></strong></p> <pre><code>def mygetattr(self, attr): return getattr(self, '_%s%s' % (self.__class__.__name__, attr)) </code></pre> <h2>Dynamically changing function signatures</h2> <p>Anyway, at this point, here is the simplified code:</p> <pre><code>class MultiplierFactory(object): def __init__(self, factor=1): self.factor = factor def __call__(self, factor=None): if factor is None: factor = self.factor class Multiplier(object): def __init__(self, factor=None): self.factor = factor def __call__(self, n): return self.factor*n Multiplier.__init__.im_func.func_defaults = (factor,) return Multiplier(factor) twice = MultiplierFactory(2)() </code></pre> <p>Code is almost clean now. The only puzzling line, maybe, would be:</p> <pre><code>Multiplier.__init__.im_func.func_defaults = (factor,) </code></pre> <p>What's in there? I looked at the <a href="http://docs.python.org/reference/datamodel.html#the-standard-type-hierarchy" rel="nofollow">datamodel doc</a>, and found that <code>func_defaults</code> was "<em>A tuple containing default argument values for those arguments that have defaults, or None if no arguments have a default value</em>". <strong><em>Are we just changing the default value for</em> <code>factor</code> <em>argument in</em> <code>__init__</code> <em>here?</em></strong> Resulting code would then be:</p> <pre><code>class MultiplierFactory(object): def __init__(self, factor=1): self.factor = factor def __call__(self, factor=None): if factor is None: factor = self.factor class Multiplier(object): def __init__(self, innerfactor=factor): self.factor = innerfactor def __call__(self, n): return self.factor*n return Multiplier(factor) twice = MultiplierFactory(2)() </code></pre> <p>Which means that dynamically setting the default value was just useless noise, since <code>Multiplier</code> is never called without a default parameter, <strong><em>right</em></strong>?</p> <p>And we could probably simplify it to:</p> <pre><code>class MultiplierFactory(object): def __init__(self, factor=1): self.factor = factor def __call__(self, factor=None): if factor is None: factor = self.factor def my_multiplier(n): return factor*n return my_multiplier twice = MultiplierFactory(2)() # similar to MultiplierFactory()(2) </code></pre> <p>Correct?</p> <p><em>And for those hurrying to "this is not a real question"... read again, my questions are in bold+italic</em></p> http://stackoverflow.com/questions/1480490/python-interpreter-as-a-c-class/1480900#1480900 4 Answer by NicDumZ for Python interpreter as a c++ class NicDumZ 2009-09-26T10:01:10Z 2009-09-26T10:01:10Z <p>Callin <code>Py_Initialize()</code> twice won't work well, however <a href="http://docs.python.org/c-api/init.html#Py%5FNewInterpreter" rel="nofollow"><code>Py_NewInterpreter</code></a> can work, depending on what you're trying to do. Read the docs carefully, you have to hold the GIL when calling this.</p> http://stackoverflow.com/questions/1467336/downloading-images-from-wikimedia-commons/1470736#1470736 2 Answer by NicDumZ for Downloading Images from WikiMedia Commons NicDumZ 2009-09-24T09:56:01Z 2009-09-24T09:56:01Z <p>Try explaining exactly what you want to do? And what you've tried? What error message did you get? You're not very clear...</p> <p>What libraries have you tried? If you're not aggressive, there are no restrictions in downloading WM content. I've never heard of any restrictions. Some User-Agents are banned from editing to avoid stupid spamming, but really, I've never heard of downloading restrictions.</p> <p>If you are trying to scrape a massive amount of images, downloading them through Commons, you're doing it wrong (tm). If you are trying to get a few images, anywhere from 10 to 200, you should be able to write a decent tool in a few lines of code, provided that you are respecting the throttling requirement: when the API tells you to slow down, if you don't do it, sysadmins are likely to kick you out.</p> <p>If you need a complete image dump, (we're talking of a few TBs) try asking on <a href="https://lists.wikimedia.org/mailman/listinfo/wikitech-l" rel="nofollow">wikitech-l</a>. We had torrents available when there were less images, now it's more complicated, but still <a href="http://www.nabble.com/Re%3A--Foundation-l--dumps-td22174091.html" rel="nofollow">doable</a>.</p> <p>About bot accounts. How deep have you looked in the system? You need a bot account for fast, unsupervised edits. Bot privileges also open a few facilities such as increased query sizes. But remember: bot account? it's simply an augmented user-account. Have you tried running anything with a classical account?</p> http://stackoverflow.com/questions/1421357/how-do-i-get-the-operating-system-name-in-a-friendly-manner-using-python-2-5/1421623#1421623 5 Answer by NicDumZ for How do I get the operating system name in a friendly manner using Python 2.5? NicDumZ 2009-09-14T13:43:16Z 2009-09-14T13:43:16Z <p>it is because you named your program "platform". Hence when importing the module "platform", your program is imported instead in a circular import.</p> <p>Try renaming the file to test_platform.py, and it will work.</p> http://stackoverflow.com/questions/1421311/feeding-a-string-into-popen/1421394#1421394 2 Answer by NicDumZ for Feeding a string into Popen NicDumZ 2009-09-14T12:57:31Z 2009-09-14T12:57:31Z <p>Use <a href="http://docs.python.org/library/os.html#os.pipe" rel="nofollow">os.pipe</a>:</p> <pre><code>&gt;&gt;&gt; from subprocess import Popen &gt;&gt;&gt; import os, sys &gt;&gt;&gt; read, write = os.pipe() &gt;&gt;&gt; p = Popen(["head", "-n", "1"], stdin=read, stdout=sys.stdout) &gt;&gt;&gt; byteswritten = os.write(write, "foo bar\n") foo bar &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1368266/pywikipedia-login-py-socket-error-10060-operation-timed-out/1375566#1375566 0 Answer by NicDumZ for pywikipedia login.py socket.error: (10060, 'Operation timed out') NicDumZ 2009-09-03T19:49:58Z 2009-09-03T19:49:58Z <p>Works for me, sorry. I just created an account, and used your family file. It seems to be on your side.</p> <pre><code>$ python login.py -v -v -family:explicator -lang:en Pywikipediabot [http] trunk/pywikipedia (r6858, May 08 2009, 15:23:29) Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) [GCC 4.3.3] WARNING: Using -v -v on login.py might leak private data. When sharing, please double check your password is not readable and log out your bots session. Password for user NicDumZ on explicator:en: Logging in to explicator:en as NicDumZ self.site.postData(/w/index.php?title=Special:Userlogin&amp;useskin=monobook&amp;action=submit, wpSkipCookieCheck=1&amp;wpPassword=XXXXX&amp;wpDomain=&amp;wpRemember=1&amp;wpLoginattempt=Aanmelden%20%26%20Inschrijven&amp;wpName=NicDumZ) 302/Found Date: Thu, 03 Sep 2009 19:46:47 GMT Server: Apache Cache-Control: private, must-revalidate, max-age=0 Expires: Thu, 01 Jan 1970 00:00:00 GMT Set-Cookie: referata_session=XXXXXXXXXXdab8c53151d27046d68473; path=/; HttpOnly Set-Cookie: referataUserID=4; expires=Sat, 03-Oct-2009 19:46:48 GMT; path=/; httponly Set-Cookie: referataUserName=NicDumZ; expires=Sat, 03-Oct-2009 19:46:48 GMT; path=/; httponly Set-Cookie: referatasession=XXXXXXXXXX270504613b1d26dfef82e6; expires=Sat, 03-Oct-2009 19:46:48 GMT; path=/; httponly Vary: Accept-Encoding,Cookie X-Vary-Options: Accept-Encoding;list-contains=gzip,Cookie;string-contains=referataToken;string-contains=referataLoggedOut;string-contains=referata_session Location: http://vocabularies.referata.com/wiki/Main_Page Content-Encoding: gzip Transfer-Encoding: chunked Content-Type: text/html; charset=utf-8 Should be logged in now </code></pre> <p>Can you try the same, with -v -v options so that I can help you debug that issue? Please comment back so I can get your updates.</p> http://stackoverflow.com/questions/1340892/should-python-unittests-be-in-a-separate-module/1341119#1341119 1 Answer by NicDumZ for Should Python unittests be in a separate module? NicDumZ 2009-08-27T13:31:11Z 2009-08-27T13:31:11Z <h1>YES, do use a separate module.</h1> <p>It does not really make sense to use the <code>__main__</code> trick. Just assume that you have <strong>several files</strong> in your module, and it does not work anymore, because <strong>you don't want to run each source file</strong> separately when testing your module.</p> <p>Also, when installing a module, most of the time <strong>you don't want to install the tests</strong>. Your end-user does not care about tests, only the developers should care.</p> <p>No, really. Put your tests in <code>tests/</code>, your doc in <code>doc</code>, and have a Makefile ready around for a <code>make test</code>. Any other approaches are just intermediate solutions, only valid for specific tiny modules.</p> http://stackoverflow.com/questions/1339293/python-memory-leak-debugging/1339400#1339400 1 Answer by NicDumZ for Python: Memory leak debugging NicDumZ 2009-08-27T07:26:36Z 2009-08-27T07:51:26Z <p>Have you tried <a href="http://docs.python.org/library/gc.html#gc.set%5Fdebug" rel="nofollow">gc.set_debug()</a> ?</p> <p>You need to ask yourself simple questions:</p> <ul> <li>Am I using objects with <code>__del__</code> methods? Do I absolutely, unequivocally, need them?</li> <li>Can I get reference cycles in my code? Can't we break these circles before getting rid of the objects?</li> </ul> <p>See, the main issue would be a cycle of objects containing <code>__del__</code> methods:</p> <pre><code>import gc class A(object): def __del__(self): print 'a deleted' if hasattr(self, 'b'): delattr(self, 'b') class B(object): def __init__(self, a): self.a = a def __del__(self): print 'b deleted' del self.a def createcycle(): a = A() b = B(a) a.b = b return a, b gc.set_debug(gc.DEBUG_LEAK) a, b = createcycle() # remove references del a, b # prints: ## gc: uncollectable &lt;A 0x...&gt; ## gc: uncollectable &lt;B 0x...&gt; ## gc: uncollectable &lt;dict 0x...&gt; ## gc: uncollectable &lt;dict 0x...&gt; gc.collect() # to solve this we break explicitely the cycles: a, b = createcycle() del a.b del a, b # objects are removed correctly: ## a deleted ## b deleted gc.collect() </code></pre> <p>I would really encourage you to flag objects / concepts that are cycling in your application and focus on their lifetime: when you don't need them anymore, do we have anything referencing it?</p> <p>Even for cycles without <code>__del__</code> methods, we can have an issue:</p> <pre><code>import gc # class without destructor class A(object): pass def createcycle(): # a -&gt; b -&gt; c # ^ | # ^&lt;--&lt;--&lt;--| a = A() b = A() a.next = b c = A() b.next = c c.next = a return a, b, b gc.set_debug(gc.DEBUG_LEAK) a, b, c = createcycle() # since we have no __del__ methods, gc is able to collect the cycle: del a, b, c # no panic message, everything is collectable: ##gc: collectable &lt;A 0x...&gt; ##gc: collectable &lt;A 0x...&gt; ##gc: collectable &lt;dict 0x...&gt; ##gc: collectable &lt;A 0x...&gt; ##gc: collectable &lt;dict 0x...&gt; ##gc: collectable &lt;dict 0x...&gt; gc.collect() a, b, c = createcycle() # but as long as we keep an exterior ref to the cycle...: seen = dict() seen[a] = True # delete the cycle del a, b, c # nothing is collected gc.collect() </code></pre> <p>If you have to use "seen"-like dictionaries, or history, be careful that you keep only the actual data you need, and no external references to it.</p> <p>I'm a bit disappointed now by <code>set_debug</code>, I wish it could be configured to output data somewhere else than to stderr, but hopefully <a href="http://bugs.python.org/issue5851" rel="nofollow">that should change soon</a>.</p> http://stackoverflow.com/questions/1333179/python-critique/1333203#1333203 1 Answer by NicDumZ for Python Critique NicDumZ 2009-08-26T08:33:03Z 2009-08-26T08:33:03Z <p><img src="http://imgs.xkcd.com/comics/python.png" alt="alt text" /></p> http://stackoverflow.com/questions/1332978/any-libraries-modules-for-file-management-in-python/1333007#1333007 0 Answer by NicDumZ for Any libraries/modules for file management in python? NicDumZ 2009-08-26T07:48:05Z 2009-08-26T07:48:05Z <p>You are looking for file system events modules.</p> <p>Which OS are you running?</p> <p>(disclaimer: I'm maintaining those two modules)</p> <ul> <li>On Linux, you can use <a href="http://en.wikipedia.org/wiki/Inotify" rel="nofollow">inotify</a>. Have a look at <a href="http://selenic.com/repo/hg/file/37042e8b3b34/hgext/inotify/linux" rel="nofollow">inotify code</a> in mercurial.</li> <li>On Mac OS X (>=10.5) you can use <a href="http://en.wikipedia.org/wiki/FSEvents" rel="nofollow">FSEvents</a>. See <a href="http://pypi.python.org/pypi/pyfsevents" rel="nofollow" title="pyfsevents">pyfsevents</a>.</li> </ul> <p>For other alternatives, you can have a look at <a href="http://trac.dbzteam.org/pyinotify/wiki/Tutorial" rel="nofollow">pyinotify</a> or <a href="http://www.gnome.org/~veillard/gamin/" rel="nofollow">gamin</a>, but I have never tried those modules.</p> http://stackoverflow.com/questions/1256213/pywikipedia-bot-with-https-and-http-authentication/1258883#1258883 3 Answer by NicDumZ for pywikipedia bot with https and http authentication NicDumZ 2009-08-11T07:29:46Z 2009-08-14T08:03:12Z <p>Hello!</p> <p>Well the fact that <code>login.py</code> tries accessing '\w' instead of your path shows that there is a family configuration issue.</p> <p>Your code is indented strangely: is <code>scriptpath</code> a member of the new Family class? as in:</p> <pre><code>class Family(family.Family): def __init__(self): family.Family.__init__(self) self.name = 'mywiki' self.langs = { 'en' : 'local.example.com'} def scriptpath(self, code): return '/mywiki' def version(self, code): return '1.13.5' def isPublic(self): return False def hostname(self, code): return 'local.example.com' def protocol(self, code): return 'https' </code></pre> <p>?</p> <p>I believe that something is wrong with your family file. A good way to check is to do in a python console:</p> <pre><code>import wikipedia site = wikipedia.getSite('en', 'mywiki') print site.login_address() </code></pre> <p>as long as the relative address is wrong, showing '/w' instead of '/mywiki', it means that the family file is still not configured correctly, and that the bot won't work :)</p> <p><strong>Update</strong>: how to integrate ntlm in pywikipedia?</p> <p>I just had a look at the basic example <a href="http://code.google.com/p/python-ntlm/" rel="nofollow">here</a>. I would integrate the code before that line in <code>login.py</code>:</p> <pre><code>response = urllib2.urlopen(urllib2.Request(self.site.protocol() + '://' + self.site.hostname() + address, data, headers)) </code></pre> <p>You want to write something of the like:</p> <pre><code>from ntlm import HTTPNtlmAuthHandler user = 'DOMAIN\User' password = "Password" url = self.site.protocol() + '://' + self.site.hostname() passman = urllib2.HTTPPasswordMgrWithDefaultRealm() passman.add_password(None, url, user, password) # create the NTLM authentication handler auth_NTLM = HTTPNtlmAuthHandler.HTTPNtlmAuthHandler(passman) # create and install the opener opener = urllib2.build_opener(auth_NTLM) urllib2.install_opener(opener) response = urllib2.urlopen(urllib2.Request(self.site.protocol() + '://' + self.site.hostname() + address, data, headers)) </code></pre> <p>I would test this and integrate it directly into pywikipedia codebase if only I had an available ntlm setup...</p> <p>Whatever happens, please do not vanish with your solution: we're interested, at pywikipedia, by your solution :)</p> http://stackoverflow.com/questions/1104823/python-c-extension-method-signatures-for-documentation 2 Python C extension: method signatures for documentation? NicDumZ 2009-07-09T15:54:45Z 2009-07-09T16:33:33Z <p>Hello SO :)</p> <p>I am writing C extensions, and I'd like to specify for my users the signature of my methods. Let's throw in some code :)</p> <pre><code>static PyObject* foo(PyObject *self, PyObject *args) { /* blabla [...] */ } PyDoc_STRVAR( foo_doc, "Great example function\n" "Arguments: (timeout, flags=None)\n" "Doc blahblah doc doc doc."); static PyMethodDef methods[] = { {"foo", foo, METH_VARARGS, foo_doc}, {NULL}, }; PyMODINIT_FUNC init_myexample(void) { (void) Py_InitModule3("_myexample", methods, "a simple example module"); } </code></pre> <p>Now if (after building it...) I load the module and look at its help:</p> <pre><code>&gt;&gt;&gt; import _myexample &gt;&gt;&gt; help(_myexample) </code></pre> <p>I will get:</p> <pre><code>Help on module _myexample: NAME _myexample - a simple example module FILE /path/to/module/_myexample.so FUNCTIONS foo(...) Great example function Arguments: (timeout, flags=None) Doc blahblah doc doc doc. </code></pre> <p>I would like to be even more specific and be able to replace <strong>foo(...)</strong> by <strong>foo(timeout, flags=None)</strong></p> <p>Can I do this? How? :)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1053983/python-unittest-callable-object-that-returns-a-test-suite/1054011#1054011 4 Answer by NicDumZ for Python unittest: callable object that returns a test suite NicDumZ 2009-06-28T01:37:28Z 2009-06-28T01:37:28Z <p>The very first error message you got is meaningful, and explains a lot.</p> <pre><code>print MyTestCase.suite # &lt;unbound method MyTestCase.suite&gt; </code></pre> <p><em>Unbound</em>. It means that you cannot call it unless you bind it to an instance. It's actually the same for <code>MyTestCase.run</code>:</p> <pre><code>print MyTestCase.run # &lt;unbound method MyTestCase.run&gt; </code></pre> <p>Maybe for now you don't understand why you can't call <code>suite</code>, but please leave it aside for now. Would you try to call <code>run</code> on the class, like above? Something like:</p> <pre><code>MyTestCase.run() # ? </code></pre> <p>Probably not, right? It does not make sense to write this, and it will not work, because <code>run</code> is an instance method, and needs a <code>self</code> instance to work on. Well it appears that Python "understands" <code>suite</code> in the same way it understands <code>run</code>, as an unbound method. </p> <p>Let's see why:</p> <p>If you try to put the <code>suite</code> method out of the class scope, and define it as a global function, it just works:</p> <pre><code>import unittest def average(values): return sum(values) / len(values) class MyTestCase(unittest.TestCase): def testFoo(self): self.assertEqual(average([10,100]),55) def testBar(self): self.assertEqual(average([11]),11) def testBaz(self): self.assertEqual(average([20,20]),20) def suite(): suite = unittest.TestSuite() suite.addTest(MyTestCase('testFoo')) suite.addTest(MyTestCase('testBar')) suite.addTest(MyTestCase('testBaz')) return suite print suite() # &lt;unittest.TestSuite tests=[&lt;__main__.MyTestCase testMethod=testFoo&gt;, &lt;__main__.MyTestCase testMethod=testBar&gt;, &lt;__main__.MyTestCase testMethod=testBaz&gt;]&gt; </code></pre> <p>But you don't want it out of the class scope, because you want to call <code>MyTestCase.suite()</code></p> <p>You probably thought that since <code>suite</code> was sort of "static", or instance-independent, it did not make sense to put a <code>self</code> argument, did you? It's right.</p> <p>But if you define a method inside a Python class, Python will expect that method to have a <code>self</code> argument as a first argument. Just omitting the <code>self</code> argument does not make your method <code>static</code> automatically. When you want to define a "static" method, you have to use the <a href="http://docs.python.org/library/functions.html#staticmethod" rel="nofollow">staticmethod</a> decorator:</p> <pre><code>@staticmethod def suite(): suite = unittest.TestSuite() suite.addTest(MyTestCase('testFoo')) suite.addTest(MyTestCase('testBar')) suite.addTest(MyTestCase('testBaz')) return suite </code></pre> <p>This way Python does not consider MyTestCase as an instance method but as a function:</p> <pre><code>print MyTestCase.suite # &lt;function suite at 0x...&gt; </code></pre> <p>And of course now you can call <code>MyTestCase.suite()</code>, and that will work as expected.</p> <pre><code>if __name__ == '__main__': s = MyTestCase.suite() unittest.TextTestRunner().run(s) # Ran 3 tests in 0.000s, OK </code></pre> http://stackoverflow.com/questions/1029480/is-there-a-way-to-remove-the-history-for-a-single-file-in-mercurial/1030463#1030463 5 Answer by NicDumZ for Is there a way to remove the history for a single file in Mercurial? NicDumZ 2009-06-23T03:07:47Z 2009-06-23T03:07:47Z <p>No, you can't. Read the <em><a href="http://hgbook.red-bean.com/read/finding-and-fixing-mistakes.html#sec:undo:aaaiiieee" rel="nofollow">changes that should have never been</a></em> section of the mercurial red book about it; and particularly the <em><a href="http://hgbook.red-bean.com/read/finding-and-fixing-mistakes.html#id394667" rel="nofollow">what about sensitive changes that escape</a></em> subsection, which contains this paragraph:</p> <blockquote> <p>Mercurial also does not provide a way to make a file or changeset completely disappear from history, because there is no way to enforce its disappearance; someone could easily modify their copy of Mercurial to ignore such directives. In addition, even if Mercurial provided such a capability, someone who simply hadn't pulled a “make this file disappear” changeset wouldn't be affected by it, nor would web crawlers visiting at the wrong time, disk backups, or other mechanisms. Indeed, no distributed revision control system can make data reliably vanish. Providing the illusion of such control could easily give a false sense of security, and be worse than not providing it at all.</p> </blockquote> <p>The usual way to revert committed changes is supported by mercurial through the <code>backout</code> command (again, mercurial book: <a href="http://hgbook.red-bean.com/read/finding-and-fixing-mistakes.html#id392218" rel="nofollow"><em>dealing with committed changes</em></a>) but the information does not disappear from the repository: since you never know who exactly cloned your repository, that would give a false sense of security, as explained above.</p> http://stackoverflow.com/questions/1025244/disable-gnomes-automount-with-python/1025369#1025369 3 Answer by NicDumZ for Disable GNOME's automount with Python NicDumZ 2009-06-22T03:27:13Z 2009-06-22T03:27:13Z <p>Why would do it in Python? You can just use the commandline, as in:</p> <pre><code>gconftool-2 --type bool --set /apps/nautilus/preferences/media_automount false </code></pre> <p>If you really need it to be in Python, then you can use the <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess module</a>:</p> <pre><code>import subprocess def setAutomount(value): """ @type value: boolean """ cmd = ['gconftool-2', '--type', 'bool', '--set', '/apps/nautilus/preferences/media_automount'] cmd.append(str(value).lower()) subprocess.check_call(cmd) setAutomount(False) </code></pre> <p>But I'm really not sure that it's necessary here.</p> http://stackoverflow.com/questions/1021884/pywikipedia-question/1023301#1023301 1 Answer by NicDumZ for pywikipedia question? NicDumZ 2009-06-21T06:00:55Z 2009-06-21T06:00:55Z <p>If you mean "I want to get the wikitext only", then look at the <code>wikipedia.Page</code> class, and the <code>get</code> method.</p> <pre><code>import wikipedia site = wikipedia.getSite('en', 'wikipedia') page = wikipedia.Page(site, 'Test') print page.get() # '''Test''', '''TEST''' or '''Tester''' may refer to: #==Science and technology== #* [[Concept inventory]] - an assessment to reveal student thinking on a topic. # ... </code></pre> <p>This way you get the complete, raw wikitext from the article. </p> <p>If you want to strip out the wiki syntax, as is transform <code>[[Concept inventory]]</code> into Concept inventory and so on, it is going to be a bit more painful.</p> <p>The main reason for this trouble is that the MediaWiki wiki syntax has no defined grammar. Which makes it really hard to parse, and to strip. I currently know no software that allows you to do this accurately. There's the MediaWiki Parser class of course, but it's PHP, a bit hard to grasp, and its purpose is very very different.</p> <p>But if you only want to strip out links, or very simple wiki constructs use regexes:</p> <pre><code>text = re.sub('\[\[([^\]\|]*)\]\]', '\\1', 'Lorem ipsum [[dolor]] sit amet, consectetur adipiscing elit.') print text #Lorem ipsum dolor sit amet, consectetur adipiscing elit. </code></pre> <p>and then for piped links: </p> <pre><code>text = re.sub('\[\[(?:[^\]\|]*)\|([^\]\|]*)\]\]', '\\1', 'Lorem ipsum [[dolor|DOLOR]] sit amet, consectetur adipiscing elit.') print text #Lorem ipsum DOLOR sit amet, consectetur adipiscing elit. </code></pre> <p>and so on.</p> <p>But for example, there is no reliable easy way to strip out nested templates from a page. And the same goes for Images that have links in their comments. It's quite hard, and involves recursively removing the most internal link and replacing it by a marker and start over. Have a look at the <code>templateWithParams</code> function in wikipedia.py if you want, but it's not pretty.</p> http://stackoverflow.com/questions/909834/pywikipedia-logging-in/1023283#1023283 0 Answer by NicDumZ for pywikipedia logging in? NicDumZ 2009-06-21T05:37:05Z 2009-06-21T05:37:05Z <p>The answer is going to be simple: you can't use pywikipedia without being able to run <code>login.py</code>.</p> <p>That file not only provides a nice User-interface to try your configuration: it contains all the authentication primitives that we use in the framework to log in. Without logging-in, you can't do much, so no.</p> <p>If you want a more helpful answer, you'll have to be more precise: as in, why you can't use login.py, and what operations you do need to do with Pywikipedia.</p> http://stackoverflow.com/questions/1016384/cross-platform-subprocess-with-hidden-window/1016633#1016633 0 Answer by NicDumZ for Cross-platform subprocess with hidden window NicDumZ 2009-06-19T06:38:02Z 2009-06-19T06:38:02Z <p>You can turn your code into:</p> <pre><code>params = dict() if os.name == 'nt': startupinfo = subprocess.STARTUPINFO() startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW params['startupinfo'] = startupinfo proc = subprocess.Popen(command, **params) </code></pre> <p>but that's not much better.</p> http://stackoverflow.com/questions/1010583/mathematical-equation-manipulation-in-python/1010712#1010712 1 Answer by NicDumZ for Mathematical Equation Manipulation in python NicDumZ 2009-06-18T03:58:12Z 2009-06-18T07:00:51Z <p>If you want to do this out of the box, without relying on librairies, I think that the problems you will find are not Python related. If you want to find such equations, you have to describe the heuristics necessary to solve these equations.</p> <p>First, you have to represent your equation. What about separating:</p> <ul> <li>operands: <ul> <li>symbolic operands (a,b)</li> <li>numeric operands (1,2)</li> </ul></li> <li>operators: <ul> <li>unary operators (-, trig functions)</li> <li>binary operators (+,-,*,/)</li> </ul></li> </ul> <p>Unary operators will obviously enclose one operand, binary ops will enclose two.</p> <p>What about types?</p> <p>I think that all of these components should derivate from a single common <code>expression</code> type. And this class would have a <code>getsymbols</code> method to locate quickly symbols in your expressions. </p> <p>And then distinguish between unary and binary operators, add a few basic complement/reorder primitives...</p> <p>Something like:</p> <pre><code>class expression(object): def symbols(self): if not hasattr(self, '_symbols'): self._symbols = self._getsymbols() return self._symbols def _getsymbols(self): """ return type: list of strings """ raise NotImplementedError class operand(expression): pass class symbolicoperand(operand): def __init__(self, name): self.name = name def _getsymbols(self): return [self.name] def __str__(self): return self.name class numericoperand(operand): def __init__(self, value): self.value = value def _getsymbols(self): return [] def __str__(self): return str(self.value) class operator(expression): pass class binaryoperator(operator): def __init__(self, lop, rop): """ @type lop, rop: expression """ self.lop = lop self.rop = rop def _getsymbols(self): return self.lop._getsymbols() + self.rop._getsymbols() @staticmethod def complementop(): """ Return complement operator: op.complementop()(op(a,b), b) = a """ raise NotImplementedError def reorder(): """ for op1(a,b) return op2(f(b),g(a)) such as op1(a,b) = op2(f(a),g(b)) """ raise NotImplementedError def _getstr(self): """ string representing the operator alone """ raise NotImplementedError def __str__(self): lop = str(self.lop) if isinstance(self.lop, operator): lop = '(%s)' % lop rop = str(self.rop) if isinstance(self.rop, operator): rop = '(%s)' % rop return '%s%s%s' % (lop, self._getstr(), rop) class symetricoperator(binaryoperator): def reorder(self): return self.__class__(self.rop, self.lop) class asymetricoperator(binaryoperator): @staticmethod def _invert(operand): """ div._invert(a) -&gt; 1/a sub._invert(a) -&gt; -a """ raise NotImplementedError def reorder(self): return self.complementop()(self._invert(self.rop), self.lop) class div(asymetricoperator): @staticmethod def _invert(operand): if isinstance(operand, div): return div(self.rop, self.lop) else: return div(numericoperand(1), operand) @staticmethod def complementop(): return mul def _getstr(self): return '/' class mul(symetricoperator): @staticmethod def complementop(): return div def _getstr(self): return '*' class add(symetricoperator): @staticmethod def complementop(): return sub def _getstr(self): return '+' class sub(asymetricoperator): @staticmethod def _invert(operand): if isinstance(operand, min): return operand.op else: return min(operand) @staticmethod def complementop(): return add def _getstr(self): return '-' class unaryoperator(operator): def __init__(self, op): """ @type op: expression """ self.op = op @staticmethod def complement(expression): raise NotImplementedError def _getsymbols(self): return self.op._getsymbols() class min(unaryoperator): @staticmethod def complement(expression): if isinstance(expression, min): return expression.op else: return min(expression) def __str__(self): return '-' + str(self.op) </code></pre> <p>With this basic structure set up, you should be able to describe a simple heuristic to solve very simple equations. Just think of the simple rules you learned to solve equations, and write them down. That should work :)</p> <p>And then a very naive solver:</p> <pre><code>def solve(left, right, symbol): """ @type left, right: expression @type symbol: string """ if symbol not in left.symbols(): if symbol not in right.symbols(): raise ValueError('%s not in expressions' % symbol) left, right = right, left solved = False while not solved: if isinstance(left, operator): if isinstance(left, unaryoperator): complementor = left.complement right = complementor(right) left = complementor(left) elif isinstance(left, binaryoperator): if symbol in left.rop.symbols(): left = left.reorder() else: right = left.complementop()(right, left.rop) left = left.lop elif isinstance(left, operand): assert isinstance(left, symbolicoperand) assert symbol==left.name solved = True print symbol,'=',right a,b,c,d,e = map(symbolicoperand, 'abcde') solve(a, div(add(b,mul(c,d)),e), 'd') # d = ((a*e)-b)/c solve(numericoperand(1), min(min(a)), 'a') # a = 1 </code></pre> http://stackoverflow.com/questions/1010381/python-factorization/1010463#1010463 4 Answer by NicDumZ for Python factorization NicDumZ 2009-06-18T02:18:50Z 2009-06-18T03:08:12Z <p>Well, not only you have 3 loops, but this approach won't work if you have more than 3 factors :)</p> <p>One possible way:</p> <pre><code>def genfactors(fdict): factors = set([1]) for factor, count in fdict.iteritems(): for ignore in range(count): factors.update([n*factor for n in factors]) # that line could also be: # factors.update(map(lambda e: e*factor, factors)) return factors factors = {2:3, 3:2, 5:1} for factor in genfactors(factors): print factor </code></pre> <p>Also, you can avoid duplicating some work in the inner loop: if your working set is (1,3), and want to apply to 2^3 factors, we were doing:</p> <ul> <li><code>(1,3) U (1,3)*2 = (1,2,3,6)</code></li> <li><code>(1,2,3,6) U (1,2,3,6)*2 = (1,2,3,4,6,12)</code></li> <li><code>(1,2,3,4,6,12) U (1,2,3,4,6,12)*2 = (1,2,3,4,6,8,12,24)</code></li> </ul> <p>See how many duplicates we have in the second sets?</p> <p>But we can do instead:</p> <ul> <li><code>(1,3) + (1,3)*2 = (1,2,3,6)</code></li> <li><code>(1,2,3,6) + ((1,3)*2)*2 = (1,2,3,4,6,12)</code></li> <li><code>(1,2,3,4,6,12) + (((1,3)*2)*2)*2 = (1,2,3,4,6,8,12,24)</code></li> </ul> <p>The solution looks even nicer without the sets:</p> <pre><code>def genfactors(fdict): factors = [1] for factor, count in fdict.iteritems(): newfactors = factors for ignore in range(count): newfactors = map(lambda e: e*factor, newfactors) factors += newfactors return factors </code></pre> http://stackoverflow.com/questions/1008164/mercurial-diff-ignore-trailing-whitespace/1008244#1008244 6 Answer by NicDumZ for Mercurial diff: ignore trailing whitespace? NicDumZ 2009-06-17T16:42:37Z 2009-06-17T16:42:37Z <p>Put in your <a href="http://www.selenic.com/mercurial/hgrc.5.html" rel="nofollow">hgrc</a> file:</p> <pre><code>[color] diff.trailingwhitespace = none </code></pre> <p>Read more about customizing color schemes on the <a href="http://www.selenic.com/mercurial/wiki/ColorExtension" rel="nofollow">ColorExtension wiki page</a></p> http://stackoverflow.com/questions/1005080/effective-extensions-for-development-wiki/1005137#1005137 1 Answer by NicDumZ for Effective Extensions for Development Wiki NicDumZ 2009-06-17T04:33:50Z 2009-06-17T04:33:50Z <p>Well, I think that a good starting point would be to check what we use at <a href="http://mediawiki.org" rel="nofollow">mediawiki.org</a>, because this is a Development Wiki :)</p> <p>My first choice would be <a href="http://www.mediawiki.org/wiki/Extension:CodeReview" rel="nofollow">CodeReview</a> of course. It's not pretty, but it's very useful. See <a href="http://www.mediawiki.org/wiki/Special:Code/MediaWiki" rel="nofollow">how we use it</a>: it allows to integrate a SVN into the wiki, to add comments on code, tag commits, and put statuses on it. At MediaWiki, we use new/verified/ok chain, adding fixme/reverted/resolved/deferred when things go wrong; but you're free to use your own statuses here.</p> http://stackoverflow.com/questions/994710/how-to-strip-the-8th-bit-in-a-koi8-r-encoded-character/994794#994794 1 Answer by NicDumZ for How to strip the 8th bit in a KOI8-R encoded character? NicDumZ 2009-06-15T06:59:51Z 2009-06-15T06:59:51Z <p>Here is one way:</p> <pre><code>import array mask = ~(1 &lt;&lt; 7) def convert(koistring): bytes = array.array('B', koistring) for i in range(len(bytes)): bytes[i] &amp;= mask return bytes.tostring() test = u'Русский Текст'.encode('koi8-r') print convert(test) # rUSSKIJ tEKST </code></pre> <p>I don't know if Python provides a cleaner way to do this kind of operations :)</p> http://stackoverflow.com/questions/994270/binary-tree/994316#994316 1 Answer by NicDumZ for binary tree NicDumZ 2009-06-15T02:29:21Z 2009-06-15T02:36:30Z <p>Hello!</p> <p>Does node order matters? I'm assuming for this answer that the two following trees :</p> <pre><code> 1 1 / \ / \ 3 2 2 3 </code></pre> <p>are not equal, because node position and order is taken into account for the comparison.</p> <p><strong>A few hints</strong></p> <ul> <li>Do you agree that two empty trees are equal?</li> <li>Do you agree that two trees that only have a root node, with identical node values, are equal?</li> <li>Can't you generalize this approach?</li> </ul> <p><strong>Being a bit more precise</strong></p> <p>Consider this generic tree:</p> <pre><code> rootnode(value=V) / \ / \ -------- ------- | left | | right | | subtree| |subtree| -------- ------- </code></pre> <p><em>rootnode</em> is a single node. The two children are more generic, and represent binary trees. The children can either be empty, or a single node, or a fully-grown binary tree.</p> <p>Do you agree that this representation is generic enough to represent any kind of non-empty binary tree? Are you able to decompose, say, <a href="http://commons.wikimedia.org/wiki/File:Small%5Fbinary.svg" rel="nofollow">this simple tree</a> into my representation?</p> <p>If you understand this concept, then this decomposition can help you to solve the problem. If you do understand the concept, but can't go any further with the algorithm, please comment here and I'll be a bit more specific :)</p> http://stackoverflow.com/questions/1865664/mercurial-get-non-versioned-copy-of-an-earlier-version-of-a-file/1865720#1865720 Comment by NicDumZ on Mercurial: Get non-versioned copy of an earlier version of a file NicDumZ 2009-12-09T09:32:33Z 2009-12-09T09:32:33Z Please ask questions as comments to the original question. This is not a real answer. Thanks :) http://stackoverflow.com/questions/1867237/load-multiple-hgrc-files-ie-some-with-machine-specific-settings/1867275#1867275 Comment by NicDumZ on Load multiple .hgrc files - ie, some with machine-specific settings? NicDumZ 2009-12-09T09:31:02Z 2009-12-09T09:31:02Z downvoted for paraphrasing the manual without adding real information. You can do better :) http://stackoverflow.com/questions/1170338/mercurial-for-beginners-the-definitive-practical-guide/1184108#1184108 Comment by NicDumZ on Mercurial for Beginners: The Definitive Practical Guide NicDumZ 2009-11-11T07:44:30Z 2009-11-11T07:44:30Z To build mercurial from source, one will need the Python headers. Install python-dev or python-devel for those using package-oriented distributions. http://stackoverflow.com/questions/1333179/python-critique/1333203#1333203 Comment by NicDumZ on Python Critique NicDumZ 2009-11-10T02:12:34Z 2009-11-10T02:12:34Z this question is not very useful. I figured I might as well drop a nice xkcd strip. Since it's &quot;trendy&quot; here. [sarcam, where?] http://stackoverflow.com/questions/1679844/how-insecure-is-replacement-for-tmpnam/1679854#1679854 Comment by NicDumZ on How insecure is / replacement for tmpnam? NicDumZ 2009-11-05T11:25:57Z 2009-11-05T11:25:57Z <a href="http://docs.python.org/library/tempfile.html#tempfile.mkstemp" rel="nofollow">docs.python.org/library/&hellip;</a> in particular http://stackoverflow.com/questions/1679673/how-do-i-make-python-pick-the-correct-module-without-manually-modifying-sys-path Comment by NicDumZ on How do I make Python pick the correct module without manually modifying sys.path? NicDumZ 2009-11-05T11:12:20Z 2009-11-05T11:12:20Z I think that wit would be easier with a longer description of your environment. Where is the trunk module installed? How was it installed? And then, for your copy, did you only copy a small submodule, or the whole tree? where was it placed? etc... http://stackoverflow.com/questions/1611409/tools-modules-to-generate-advanced-reports-from-unittest-testresult Comment by NicDumZ on Tools/Modules to generate advanced reports from unittest.TestResult? NicDumZ 2009-10-30T01:42:43Z 2009-10-30T01:42:43Z As a workaround, one can add skip decorators ( <a href="http://docs.python.org/dev/library/unittest.html#skipping-tests-and-expected-failures" rel="nofollow">docs.python.org/dev/library/&hellip;</a> ) to the tests that are known to fail. It helps, but does not allow to detect tests that have been failing for a long time/that never passed. http://stackoverflow.com/questions/1518858/combine-two-lists-aggregate-values-that-have-similar-keys/1518882#1518882 Comment by NicDumZ on Combine two lists: aggregate values that have similar keys NicDumZ 2009-10-05T10:02:11Z 2009-10-05T10:02:11Z it took me a while to understand that he was actually <i>adding</i> values, and not removing duplicates. http://stackoverflow.com/questions/1518481/how-to-parse-youtube-search-results Comment by NicDumZ on How to parse Youtube search results? NicDumZ 2009-10-05T06:40:51Z 2009-10-05T06:40:51Z page-scraping is evil. http://stackoverflow.com/questions/1517862/using-lookahead-with-generators/1517887#1517887 Comment by NicDumZ on Using lookahead with generators NicDumZ 2009-10-05T06:31:25Z 2009-10-05T06:31:25Z scan() can be replaced by the builtin iter() http://stackoverflow.com/questions/1517862/using-lookahead-with-generators Comment by NicDumZ on Using lookahead with generators NicDumZ 2009-10-05T06:21:14Z 2009-10-05T06:21:14Z @Esko: edited title. http://stackoverflow.com/questions/1483108/regex-for-character-appearing-at-most-once/1483117#1483117 Comment by NicDumZ on regex for character appearing at most once NicDumZ 2009-09-27T09:07:49Z 2009-09-27T09:07:49Z it's implied, correct ;) http://stackoverflow.com/questions/1483085/decypher-with-me-that-obfuscated-multiplierfactory Comment by NicDumZ on decypher with me that obfuscated MultiplierFactory NicDumZ 2009-09-27T08:29:10Z 2009-09-27T08:29:10Z afaik, there are two clear questions, on private accessors and dynamic signature changes. What else? http://stackoverflow.com/questions/1481192/pythonic-format-for-indices Comment by NicDumZ on pythonic format for indices NicDumZ 2009-09-26T13:29:02Z 2009-09-26T13:29:02Z I depends what you want to do with that structure... What constraints do you have? http://stackoverflow.com/questions/1479979/case-insensitive-comparison-of-sets-in-python/1480230#1480230 Comment by NicDumZ on Case-insensitive comparison of sets in Python NicDumZ 2009-09-26T09:41:32Z 2009-09-26T09:41:32Z I guess that caching self.lower() could be an interesting first optimization?