User ars - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T03:05:00Zhttp://stackoverflow.com/feeds/user/2611http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1173463/recommendations-for-windows-text-editor-for-r/1186560#11865600Answer by ars for Recommendations for Windows text editor for Rars2009-07-27T05:33:49Z2009-08-22T19:16:11Z<p>I use gvim. Not sure how popular that is with other Windows users, but the following set of utilities come in handy and can be used by any editor capable of binding keys/functions to commands:</p>
<blockquote>
<p><a href="http://code.google.com/p/batchfiles/" rel="nofollow">http://code.google.com/p/batchfiles/</a></p>
<p>batchfiles contains batch (.bat) and javascript (.hta and .js) files useful in conjuction with R and R packages on Microsoft Windows. There is no formal installation, each consists of a single file and is independent of the others so just place any or all of them anywhere in your Windows path and you will be able to access them in any Windows console session.</p>
</blockquote>
<p>In particular, the <a href="http://en.wikipedia.org/wiki/AutoHotkey" rel="nofollow">AutoHotKey</a> scripts in that bundle are nice for sending selected text to an R console.</p>
http://stackoverflow.com/questions/1297350/python-which-modules-for-a-discussion-site/1297960#12979601Answer by ars for Python: Which modules for a discussion site?ars2009-08-19T05:39:34Z2009-08-19T05:39:34Z<p>I think <a href="http://turbogears.org/" rel="nofollow">TurboGears</a> started out as a project to collect best-of-breed packages together with some glue code to stitch them together. I think the latest incarnation uses Pylons, but perhaps only for the controller. At the very least, you can see the <a href="http://en.wikipedia.org/wiki/Turbogears" rel="nofollow">TurboGears Wikipedia entry</a> to see what components they selected (see the subsections <a href="http://en.wikipedia.org/wiki/Turbogears#TurboGears%5F1.x%5Fcomponents" rel="nofollow">TurboGears 1.x components</a> and <a href="http://en.wikipedia.org/wiki/Turbogears#TurboGears%5F2.x%5Fcomponents" rel="nofollow">TurboGears 2.x components</a>), since they've obviously had some experience with this kind of thing. There's nothing "discussion" specific, but really you just want a templating library, a database library or ORM, a WSGI implementation with a router/controller and perhaps some AJAXy or other presentation widgets.</p>
http://stackoverflow.com/questions/1297873/how-do-i-write-a-single-file-django-app/1297931#12979316Answer by ars for How do I write a single-file Django app?ars2009-08-19T05:27:30Z2009-08-19T05:27:30Z<p>You might want to consider Simon Willison's library:</p>
<ul>
<li><a href="http://simonwillison.net/2009/May/19/djng/" rel="nofollow">djng—a Django powered microframework</a></li>
</ul>
<p>From the <a href="http://github.com/simonw/djng/tree/master" rel="nofollow">readme</a>:</p>
<blockquote>
<p>djng is a micro-framework that depends on a macro-framework (Django).</p>
<p>My definition of a micro-framework: something that lets you create an entire
Python web application in a single module:</p>
<pre><code>import djng
def index(request):
return djng.Response('Hello, world')
if __name__ == '__main__':
djng.serve(index, '0.0.0.0', 8888)
</code></pre>
<p>[...]</p>
</blockquote>
http://stackoverflow.com/questions/1292189/how-does-python-for-loop-work/1292952#12929520Answer by ars for How does python for loop work?ars2009-08-18T10:02:07Z2009-08-18T10:02:07Z<p>Python's <code>for</code> loop works with <code>iterators</code>, which must implement the <code>iterator</code> protocol. For more details see:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/19151/build-a-basic-python-iterator/24377#24377">Build a Basic Python Iterator</a></li>
</ul>
http://stackoverflow.com/questions/1286548/python-lazy-attributes-that-dont-eval-on-hasattr/1291773#12917730Answer by ars for Python lazy attributes that don't eval on hasattr()ars2009-08-18T04:16:43Z2009-08-18T04:16:43Z<p>I'm curious why you need something like this. If <code>hasattr</code> ends up calling your "compute function", then so be it. Just how lazy does your property need to be anyway?</p>
<p>Still, here's a rather inelegeant way of doing it by examining the calling function's name. It could probably be coded a little better, but I don't think it should ever be used seriously.</p>
<pre><code>import inspect
class lazyattribute(object):
def __init__(self, func):
self.func = func
def __get__(self, obj, kls=None):
if obj is None or inspect.stack()[1][4][0].startswith('hasattr'):
return None
value = self.func(obj)
setattr(obj, self.func.__name__, value)
return value
class Foo(object):
@lazyattribute
def bar(self):
return 42
</code></pre>
http://stackoverflow.com/questions/1290515/python-win32-equivalent-function-to-driveinfo-isready/1290729#12907291Answer by ars for Python Win32 - equivalent function to DriveInfo.IsReadyars2009-08-17T22:02:27Z2009-08-17T22:02:27Z<p>I've used <code>GetVolumeInformation</code> in the past to determine this. For example, something like:</p>
<pre><code>def is_drive_ready(drive_name):
try:
win32api.GetVolumeInformation(drive_name)
return True
except:
return False
print 'ready:', is_drive_ready('c:\\') # true
print 'ready:', is_drive_ready('d:\\') # false (on my system)
</code></pre>
<p>You'll need the <a href="http://sourceforge.net/projects/pywin32/files/" rel="nofollow">win32api</a> module.</p>
http://stackoverflow.com/questions/1289920/is-there-a-recommended-package-for-machine-learning-in-python/1290460#12904602Answer by ars for Is there a recommended package for machine learning in python?ars2009-08-17T21:07:58Z2009-08-17T21:07:58Z<p>A general user friendly package is <a href="http://www.ailab.si/orange/" rel="nofollow">Orange</a> -- kind of like Weka or RapidMiner, if you're familiar with those.</p>
<p>Other than that, there's a variety of packages and toolkits for various tasks. You should consult the Python packages listed on <a href="http://mloss.org/software/language/python/" rel="nofollow">mloss</a> as a starting point.</p>
http://stackoverflow.com/questions/1283791/strange-error-in-ie/1287013#12870130Answer by ars for Strange error in IEars2009-08-17T09:31:27Z2009-08-17T09:31:27Z<p>Try making the registry changes documented on this page at Microsoft:</p>
<ul>
<li><a href="http://support.microsoft.com/kb/328824" rel="nofollow">Internet Explorer May Not Connect to Web Sites with Multibyte Character Set Link or URL</a></li>
</ul>
<blockquote>
<p>To work around this behavior, you must add a registry value. Add a DWORD registry value named MBCSServername with a data value of 0 to the following registry key:
HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\CurrentVersion\Internet Settings</p>
</blockquote>
http://stackoverflow.com/questions/1286626/python-scooping-and-recursion/1286814#12868142Answer by ars for python scooping and recursionars2009-08-17T08:39:25Z2009-08-17T08:39:25Z<p>As mentioned by others, you need the <code>global</code> statement for total. Also, as noted by Svante, the <code>for</code> loop is unnecessary as coded since <code>i</code> is always <code>1</code>. So, with an equivalent version of your code:</p>
<pre><code>total = 0
def foo(me, t):
global total
if t < 0:
return
total = total + 1
if t == 0:
return
return foo(1, t-1)
foo(99, 100)
print total
</code></pre>
<p>It should be easier to see that foo(99, 100) will indeed be 101 since you're essentially counting down from 100 to 0. I'm not sure why you think otherwise?</p>
http://stackoverflow.com/questions/1286257/how-to-efficiently-construct-a-connected-graph/1286266#12862663Answer by ars for How to efficiently construct a connected graph?ars2009-08-17T05:21:07Z2009-08-17T05:21:07Z<p>See <a href="http://en.wikipedia.org/wiki/Minimum%5Fspanning%5Ftree" rel="nofollow">Minimum Spanning Tree</a> algorithms.</p>
http://stackoverflow.com/questions/1286235/why-does-this-python-method-gives-an-error-saying-global-name-not-defined/1286247#12862470Answer by ars for Why does this python method gives an error saying global name not defined?ars2009-08-17T05:11:27Z2009-08-17T05:11:27Z<p>You need to call it explicitly with an instance:</p>
<pre><code>groups = self.gen_groups(input)
</code></pre>
<p>Similarly for some of the other calls you're making in there, e.g. <code>gen_album</code>.</p>
<p>Also, see <a href="http://diveintopython.org/object%5Foriented%5Fframework/defining%5Fclasses.html#d0e11896" rel="nofollow">Knowing When to Use self and <code>__init__</code></a> for more information.</p>
http://stackoverflow.com/questions/1286176/where-can-i-get-technical-information-on-how-the-internals-of-django-works/1286241#12862417Answer by ars for Where can i get technical information on how the internals of Django works?ars2009-08-17T05:09:40Z2009-08-17T05:09:40Z<p>Besides reading the source, here's a few articles I've tagged and bookmarked from a little while ago:</p>
<ul>
<li><a href="http://www.b-list.org/weblog/2006/jun/13/how-django-processes-request/" rel="nofollow">How Django processes a request</a></li>
<li><a href="http://uswaretech.com/blog/2009/06/django-request-response-processing/" rel="nofollow">Django Request Response processing</a></li>
<li><a href="http://jacobian.org/writing/django-internals-authen/" rel="nofollow">Django internals: authentication</a></li>
<li><a href="http://lazypython.blogspot.com/2008/11/how-heck-do-django-models-work.html" rel="nofollow">How the Heck do Django Models Work</a></li>
</ul>
<p>I've found James Bennet's <a href="http://www.b-list.org" rel="nofollow">blog</a> to be a a great source for information about django workings. His book, <a href="http://apress.com/book/view/1590599969" rel="nofollow">Practical Django Projects</a>, is also a must read -- though it isn't focused on internals, you'll still learn about how django works.</p>
http://stackoverflow.com/questions/1285269/why-cant-you-add-attributes-to-object-in-python/1285287#12852877Answer by ars for Why can't you add attributes to object in python?ars2009-08-16T20:34:10Z2009-08-17T00:18:11Z<p>Notice that an <code>object</code> instance has no <code>__dict__</code> attribute:</p>
<pre><code>>>> dir(object())
['__class__', '__delattr__', '__doc__', '__getattribute__', '__hash__', '__init__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__str__']
</code></pre>
<p>An example to illustrate this behavior in a derived class:</p>
<pre><code>>>> class Foo(object):
... __slots__ = {}
...
>>> f = Foo()
>>> f.bar = 42
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'Foo' object has no attribute 'bar'
</code></pre>
<p>Quoting from the docs on <a href="http://python.org/doc/2.5.2/ref/slots.html" rel="nofollow"><code>slots</code></a>:</p>
<blockquote>
<p>[...] The <code>__slots__</code> declaration takes a sequence of instance variables and reserves just enough space in each instance to hold a value for each variable. Space is saved because <code>__dict__</code> is not created for each instance.</p>
</blockquote>
<p>EDIT: To answer ThomasH from the comments, OP's test class is an "old-style" class. Try:</p>
<pre><code>>>> class test: pass
...
>>> getattr(test(), '__dict__')
{}
>>> getattr(object(), '__dict__')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'object' object has no attribute '__dict__'
</code></pre>
<p>and you'll notice there is a <code>__dict__</code> instance. The object class may not have a <code>__slots__</code> defined, but the result is the same: lack of a <code>__dict__</code>, which is what prevents dynamic assignment of an attribute. I've reorganized my answer to make this clearer (move the second paragraph to the top).</p>
http://stackoverflow.com/questions/1284923/django-calendar/1285432#12854322Answer by ars for Django, calendarars2009-08-16T21:52:02Z2009-08-16T21:52:02Z<p>Take a look at some of the calendar related exapmles here to see if they work for you:</p>
<ul>
<li><a href="http://www.djangosnippets.org/tags/calendar/" rel="nofollow">http://www.djangosnippets.org/tags/calendar/</a></li>
</ul>
<p>Also, you might consider using Python's <a href="http://docs.python.org/library/calendar.html" rel="nofollow"><code>HTMLCalendar</code></a> as discussed here:</p>
<ul>
<li><a href="http://journal.uggedal.com/creating-a-flexible-monthly-calendar-in-django" rel="nofollow">Creating a Flexible Monthly Calendar in Django</a></li>
</ul>
http://stackoverflow.com/questions/1285306/how-to-populate-a-pdf-form-such-as-a-w-2-from-data-inside-of-the-the-database/1285406#12854060Answer by ars for How to populate a PDF form such as a w-2 from data inside of the the database?ars2009-08-16T21:41:53Z2009-08-16T21:41:53Z<p>The following links might help you get started. You only need to supply the data from a database rather than HTML forms:</p>
<ul>
<li><a href="http://us.php.net/fdf" rel="nofollow">Forms Data Format</a></li>
<li><a href="http://koivi.com/fill-pdf-form-fields/" rel="nofollow">Using HTML forms to fill in PDF fields with PHP and FDF</a></li>
</ul>
http://stackoverflow.com/questions/1285134/how-to-avoid-html-escaping-in-evoque/1285174#12851741Answer by ars for How to avoid html-escaping in evoquears2009-08-16T19:41:39Z2009-08-16T20:30:23Z<p>Have you tried it with <code>raw=True</code>? See:</p>
<ul>
<li><a href="http://evoque.gizmojo.org/howto/source/" rel="nofollow">http://evoque.gizmojo.org/howto/source/</a></li>
</ul>
<p>I haven't used Qpy before, but perhaps this note will help:</p>
<blockquote>
<p><a href="http://evoque.gizmojo.org/howto/quoted-no-more/" rel="nofollow">Defining custom quoted-no-more classes</a></p>
<p>[...] It is also highly recommended to download and install the Qpy unicode templating utility that provides the qpy.xml Quoted-No-More class for automatic input escaping. [...]</p>
</blockquote>
http://stackoverflow.com/questions/1283811/urlconfs-in-django/1283851#12838511Answer by ars for URLconfs in Djangoars2009-08-16T09:10:43Z2009-08-16T09:10:43Z<p>You've elided a bunch of stuff, but do you have the following statement in there?</p>
<pre><code>from django.contrib import admin
</code></pre>
<p>If so, that would explain why you don't need to quote the latter. See the django documentation for <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#hooking-adminsite-instances-into-your-urlconf" rel="nofollow">AdminSite.urls</a> for more information.</p>
<p>If you want to remove the quotes from the former, then:</p>
<pre><code>import mysite.poll.urls
...
(r'^polls/', include(mysite.poll.urls)),
...
</code></pre>
<p>should work.</p>
http://stackoverflow.com/questions/1283298/lighttpd-modrewrite-to-apache-modrewrite/1283796#12837960Answer by ars for Lighttpd mod_rewrite to Apache Mod_rewritears2009-08-16T08:40:32Z2009-08-16T08:40:32Z<p>You might get better results asking this on <a href="http://serverfault.com/">ServerFault</a>.</p>
http://stackoverflow.com/questions/1283505/what-is-the-best-software-to-draw-erd-for-a-mysql-database-for-windows/1283548#12835480Answer by ars for what is the best software to draw ERD for a mysql database for windowsars2009-08-16T05:54:00Z2009-08-16T05:54:00Z<p>I've used <a href="http://www.toadsoft.com/toaddm/toad%5Fdata%5Fmodeler.htm" rel="nofollow">Toad Data Modeler</a> before with good results.</p>
http://stackoverflow.com/questions/1283348/single-source-documentation-tool/1283404#12834041Answer by ars for Single source documentation toolars2009-08-16T03:38:26Z2009-08-16T03:38:26Z<p><a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> is documentation generator that's quite popular and can output documents in a <a href="http://www.stack.nl/~dimitri/doxygen/output.html" rel="nofollow">variety of formats</a>. Although its primary purpose to build documentation extracted from source comments (from numerous languages), it's also quite usable as a general manual writing tool. In fact, the Doxygen website and manual are generated in this way.</p>
http://stackoverflow.com/questions/1279032/how-do-unit-tests-work-in-django-tagging-because-i-want-mine-to-run-like-that/1283400#12834001Answer by ars for How do unit tests work in django-tagging, because I want mine to run like that?ars2009-08-16T03:29:26Z2009-08-16T03:29:26Z<p>If you want to run the tests in <code>django-tagging</code>, you can try:</p>
<blockquote>
<p>django-admin.py test --settings=tagging.tests.settings</p>
</blockquote>
<p>Basically, it uses doctests which are in the <code>tests.py</code> file inside the <code>tests</code> package/directory. The tests use the settings file in that same directory (and specified in the command line to django-admin). For more information see the django documentation on <a href="http://docs.djangoproject.com/en/dev/topics/testing/#writing-doctests" rel="nofollow">writing doctests</a>.</p>
http://stackoverflow.com/questions/1283198/a-python-based-powershell/1283300#12833005Answer by ars for A python based PowerShell ?ars2009-08-16T01:48:06Z2009-08-16T03:12:34Z<p>I've only dabbled in Powershell, but what distinguishes it for me is the ability to pipe actual objects in the shell. In that respect, the closest I've found is actually using the IPython shell with <code>IPipe</code>:</p>
<ul>
<li><a href="http://ipython.scipy.org/moin/UsingIPipe" rel="nofollow">http://ipython.scipy.org/moin/UsingIPipe</a></li>
<li><a href="http://ipython.scipy.org/moin/SupportingIPipe" rel="nofollow">http://ipython.scipy.org/moin/SupportingIPipe</a></li>
</ul>
<p>Following the recipes shown on that page and cooking up my own extensions, I don't often leave the IPython shell for bash. YMMV. </p>
http://stackoverflow.com/questions/1282979/looking-for-a-good-net-data-analysis-visualization-reporting-control/1283047#12830470Answer by ars for Looking for a good .NET data analysis/visualization/reporting controlars2009-08-15T22:42:26Z2009-08-15T22:42:26Z<p>You might consider <a href="http://www.devexpress.com/Products/NET/Controls/ASP/Pivot%5FGrid/" rel="nofollow">ASPxPivotGrid</a> which provides a lot of OLAP-like drilldown functionality and meets most of your requirements. </p>
<p>The only one I'm not sure of is the "formatted reports" - it does have reporting, but the specifics depend on your requirements for your reports. I'd suggest downloading a trial version to explore further.</p>
<p>Another one I'm aware of is <a href="http://www.aspose.com/categories/visual-components/aspose.grid-for-.net/default.aspx" rel="nofollow">Aspose.Grid</a> (and also a reporting control), but I can't tell you as much. Check their website.</p>
http://stackoverflow.com/questions/1282828/aap-python-trouble/1282840#12828405Answer by ars for aap - python troublears2009-08-15T21:07:16Z2009-08-15T21:07:16Z<p>Well, <code>as</code> is a reserved word in Python. So, that can't be used in FileType.py as a variable name.</p>
<p>Try updating your installation of <code>aap</code> or writing in to the aap authors/forums.</p>
http://stackoverflow.com/questions/1281602/7z-and-file-flush-its-not-compressing-my-file/1281779#12817791Answer by ars for 7z and file flush. Its not compressing my file.ars2009-08-15T12:13:10Z2009-08-15T12:13:10Z<p>You need to call <code>p.WaitForExit()</code> after <code>p.Start()</code>. See the documentation:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.waitforexit.aspx" rel="nofollow">Process.WaitForExit</a></li>
</ul>
<p>The reason it works when you have <code>if (true)</code> is that the <code>ReadToEnd()</code> calls effectively force you to wait until the process has exited anyway.</p>
http://stackoverflow.com/questions/1281075/scraping-ajax-using-python/1281746#12817460Answer by ars for Scraping Ajax - Using pythonars2009-08-15T11:57:00Z2009-08-15T11:57:00Z<p>As suggested, you should use the YouTube API to access the data made available legitimately.</p>
<p>Regarding the general question of scraping AJAX, you might want to consider the <a href="http://scrapy.org" rel="nofollow">scrapy framework</a>. It provides extensive support for crawling and scraping web sites and uses python-spidermonkey under the hood to access javascript links. </p>
http://stackoverflow.com/questions/1281686/determine-size-of-dynamically-allocated-memory-in-c/1281720#12817205Answer by ars for determine size of dynamically allocated memory in cars2009-08-15T11:37:04Z2009-08-15T11:37:04Z<p>There is no standard way to find this information. However, some implementations provide functions like <code>msize</code> to do this. For example:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/z2s077bc(VS.80).aspx" rel="nofollow">_msize</a> on Windows</li>
<li><a href="http://developer.apple.com/documentation/Darwin/Reference/Manpages/man3/malloc%5Fsize.3.html" rel="nofollow">malloc_size</a> on MacOS</li>
</ul>
<p>Keep in mind though, that malloc will allocate a minimum of the size requested, so you should check if msize variant for your implementation actually returns the size of the object or the memory actually allocated on the heap.</p>
http://stackoverflow.com/questions/1281608/how-do-you-set-icons-of-exe-files/1281688#12816881Answer by ars for How do you set icons of .exe files?ars2009-08-15T11:22:45Z2009-08-15T11:22:45Z<p>Here's a code sample that might help:</p>
<ul>
<li><a href="http://www.go4expert.com/forums/showthread.php?t=643" rel="nofollow">Change Icon of EXE file through code extracting it from other EXE file</a></li>
</ul>
http://stackoverflow.com/questions/1281333/jdbc-postgres-vacuum-timeout/1281475#12814750Answer by ars for JDBC postgres vacuum timeoutars2009-08-15T08:42:32Z2009-08-15T08:42:32Z<p>I don't think there's a good (i.e. safe) way to kill the process other than re-starting the database. I'm not aware of any transaction timeout option either.</p>
<p>The best solution is to figure out what's causing the hang and fixing that problem. It's likely that vacuum is waiting for a transaction lock to be release. Use the <code>pg_locks</code> view to see if this is the case. If you can see what resource is being locked, you can begin to address that issue. </p>
http://stackoverflow.com/questions/1281412/new-languages/1281426#12814262Answer by ars for New languages...ars2009-08-15T08:00:29Z2009-08-15T08:00:29Z<p>This page has a nice list in chronological order:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Timeline%5Fof%5Fprogramming%5Flanguages" rel="nofollow">Timeline of programming languages</a></li>
</ul>
http://stackoverflow.com/questions/1286548/python-lazy-attributes-that-dont-eval-on-hasattr/1291773#1291773Comment by ars on Python lazy attributes that don't eval on hasattr()ars2009-08-19T00:49:27Z2009-08-19T00:49:27ZTim, this works on my end. Can you post your lazyattribute code, perhaps it's something else that's the problem?http://stackoverflow.com/questions/1295955/what-is-the-most-useful-r-trick/1296434#1296434Comment by ars on What is the most useful R trick?ars2009-08-19T00:45:24Z2009-08-19T00:45:24ZIt's not gaming the system, just getting things started. He's still free to accept any other answer. http://stackoverflow.com/questions/1295955/what-is-the-most-useful-r-trickComment by ars on What is the most useful R trick?ars2009-08-19T00:41:38Z2009-08-19T00:41:38ZCW bullying again. I'll see your meta-SO and raise you: <a href="http://meta.stackoverflow.com/questions/392/should-the-community-wiki-police-be-shut-down" rel="nofollow" title="should the community wiki police be shut down">meta.stackoverflow.com/questions/392/…</a> http://stackoverflow.com/questions/1279805/remove-duplicates-from-nested-dictionaries-in-list/1280217#1280217Comment by ars on remove duplicates from nested dictionaries in listars2009-08-18T00:55:17Z2009-08-18T00:55:17ZI guess it's easy to get missed once a question gets more than 5 or 6 answers. Probably helps to be in the first <i>or</i> last couple, I suspect. No biggie, but thanks for noting that. :)http://stackoverflow.com/questions/1286235/why-does-this-python-method-gives-an-error-saying-global-name-not-defined/1286247#1286247Comment by ars on Why does this python method gives an error saying global name not defined?ars2009-08-17T07:13:00Z2009-08-17T07:13:00ZAlex, agreed. Your diagnosis was spot on and I'm not sure why the OP responded otherwise. From his profile, it is amusing that he gives more downvotes than upvotes (6:3)!http://stackoverflow.com/questions/1286235/why-does-this-python-method-gives-an-error-saying-global-name-not-defined/1286247#1286247Comment by ars on Why does this python method gives an error saying global name not defined?ars2009-08-17T05:25:20Z2009-08-17T05:25:20ZAre you saying that the ONLY difference from the code you pasted is the change to self.gen_groups(input)?http://stackoverflow.com/questions/1285269/why-cant-you-add-attributes-to-object-in-python/1285287#1285287Comment by ars on Why can't you add attributes to object in python?ars2009-08-17T00:06:38Z2009-08-17T00:06:38Z@ThomasH, please see the note I added to the answer.http://stackoverflow.com/questions/1285134/how-to-avoid-html-escaping-in-evoque/1285174#1285174Comment by ars on How to avoid html-escaping in evoquears2009-08-16T20:45:47Z2009-08-16T20:45:47ZGlad it worked out! :)http://stackoverflow.com/questions/1285134/how-to-avoid-html-escaping-in-evoque/1285174#1285174Comment by ars on How to avoid html-escaping in evoquears2009-08-16T20:30:39Z2009-08-16T20:30:39ZPlease see the note on Qpy I just added to the answer.http://stackoverflow.com/questions/1285134/how-to-avoid-html-escaping-in-evoque/1285174#1285174Comment by ars on How to avoid html-escaping in evoquears2009-08-16T19:53:54Z2009-08-16T19:53:54ZDo you mean in t.evoque()? I meant in a call to $evoque{...} from within the template where you can output the HTML -- it seems closest to what the documentation is talking about, i.e. calling another template from within a template. See the link for more detail. I haven't tried this though.http://stackoverflow.com/questions/1283811/urlconfs-in-django/1283851#1283851Comment by ars on URLconfs in Djangoars2009-08-16T19:19:15Z2009-08-16T19:19:15ZI haven't looked at the django source, but yes, I think it just tries to import some segment of the string, assuming it's on the PYTHONPATH. See the imp module for one possible way to make it work: <a href="http://docs.python.org/library/imp.html" rel="nofollow">docs.python.org/library/imp.html</a>http://stackoverflow.com/questions/1283791/strange-error-in-ieComment by ars on Strange error in IEars2009-08-16T08:42:27Z2009-08-16T08:42:27ZIs there an error message displayed? Or, do you have access to the server to get a trace of whatever error is occurring?http://stackoverflow.com/questions/1279032/how-do-unit-tests-work-in-django-tagging-because-i-want-mine-to-run-like-that/1283400#1283400Comment by ars on How do unit tests work in django-tagging, because I want mine to run like that?ars2009-08-16T07:54:18Z2009-08-16T07:54:18ZYou're welcome; glad to help. :)http://stackoverflow.com/questions/1281602/7z-and-file-flush-its-not-compressing-my-file/1281779#1281779Comment by ars on 7z and file flush. Its not compressing my file.ars2009-08-15T22:32:59Z2009-08-15T22:32:59ZCool, glad it worked! :)http://stackoverflow.com/questions/1281229/how-to-use-jaroutputstream-to-create-a-jar-file/1281249#1281249Comment by ars on How to use JarOutputStream to create a JAR file?ars2009-08-15T07:53:20Z2009-08-15T07:53:20ZAh, OK. It was a little hard to offer a better solution without seeing any code, so I just pointed you at that reference. Glad you figured it out though.