User Jason Baker - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:44:25Zhttp://stackoverflow.com/feeds/user/2147http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1947344/fastcgi-cherrypy-and-python/1947512#19475125Answer by Jason Baker for fastcgi, cherrypy, and pythonJason Baker2009-12-22T16:33:44Z2009-12-22T16:41:47Z<p>This is because of performance. For development, autoreloading is helpful. But for production, you <em>don't</em> want to autoreload. This is actually a decently-sized bottleneck in say PHP. Every time you access a PHP webpage, the server has to parse and load each page from scratch. With Python, the script is already loaded and running after the first access.</p>
<p>As has been pointed out, CherryPy has a autoreload setting. I'd recommend using the CherryPy built-in server for development and using lighttpd for production. That will likely save you some time. The <a href="http://www.cherrypy.org/wiki/CherryPyTutorial" rel="nofollow">tutorial</a> shows you how to do this.</p>
http://stackoverflow.com/questions/1933466/how-can-i-learn-to-scale-in-my-spare-time7How can I learn to scale in my spare time?Jason Baker2009-12-19T17:02:16Z2009-12-22T15:00:52Z
<p>I really would like to learn how to attack problems of scale. Of course, the best way to tackle this is to get a job where I can deal with those sorts of issues. But they're apparently not terribly easy to get.</p>
<p>Obviously, I don't have any way to make any services that are going to handle millions of requests a day without a large investment of time. Are there any ways that I can learn enough to improve my chances of getting such a job in my spare time? For instance, what kinds of open source projects would be good to work on? And are there any books I can read on the subject?</p>
http://stackoverflow.com/questions/1888854/what-is-the-difference-between-an-abstract-syntax-tree-and-a-concrete-syntax-tree7What is the difference between an Abstract Syntax Tree and a Concrete Syntax Tree?Jason Baker2009-12-11T15:33:28Z2009-12-21T00:15:29Z
<p>I've been reading a bit about how interpreters/compilers work, and one area where I'm getting confused is the difference between an AST and a CST. My understanding is that the parser makes a CST, hands it to the semantic analyzer which turns it into an AST. However, my understanding is that the semantic analyzer simply ensures that rules are followed. I don't really understand why it would actually make any changes to make it abstract rather than concrete.</p>
<p>Is there something that I'm missing about the semantic analyzer, or is the difference between an AST and CST somewhat artificial?</p>
http://stackoverflow.com/questions/1935828/how-can-i-do-better-at-phone-interviewing-for-programming-jobs2How can I do better at phone interviewing for programming jobs? [closed]Jason Baker2009-12-20T13:24:08Z2009-12-20T14:05:30Z
<p>Used to be, my biggest hurdle was in getting my resume noticed. I seem to have gotten over that hurdle and usually get a phone interview. The thing is, I usually suck at these kinds of interviews. Every time I am asked to write code in such an interview, I've done great. But usually, it involves me describing things that I've done and work that I've done in past jobs. And I'm <em>terrible</em> at these kinds of interviews</p>
<p>Is there some kind of trick to getting better at these? Or is it just something that takes practice?</p>
http://stackoverflow.com/questions/1933451/why-should-exec-and-eval-be-avoided/1933502#19335021Answer by Jason Baker for Why should exec() and eval() be avoided?Jason Baker2009-12-19T17:08:22Z2009-12-19T17:08:22Z<p>Try this in the interactive interpreter and see what happens:</p>
<pre><code>>>> import sys
>>> eval('{"name" : %s}' % ("sys.exit(1)"))
</code></pre>
<p>Of course, this is a corner case, but it can be tricky to prevent things like this.</p>
http://stackoverflow.com/questions/117561/what-are-good-open-source-projects-in-python-for-which-i-can-be-a-contributor/1933385#19333850Answer by Jason Baker for What are good open source projects in Python for which I can be a contributor?Jason Baker2009-12-19T16:41:55Z2009-12-19T16:41:55Z<p>There are also a couple of projects being <a href="http://meta.stackoverflow.com/questions/31913/open-source-advertising-sidebar-1h-2010">advertised on stackoverflow</a>.</p>
http://stackoverflow.com/questions/117561/what-are-good-open-source-projects-in-python-for-which-i-can-be-a-contributor/1933362#19333621Answer by Jason Baker for What are good open source projects in Python for which I can be a contributor?Jason Baker2009-12-19T16:35:57Z2009-12-19T16:35:57Z<p><a href="http://stackoverflow.com/questions/1933329/good-python-open-source-to-learn/1933352#1933352">http://stackoverflow.com/questions/1933329/good-python-open-source-to-learn/1933352#1933352</a></p>
<p>If you're coming from a functional programming background, <a href="http://packages.python.org/pysistence/" rel="nofollow">pysistence</a> may be a good place to look.</p>
<p>Full disclosure: I wrote it.</p>
http://stackoverflow.com/questions/1933329/good-python-open-source-to-learn/1933352#19333520Answer by Jason Baker for good python open source to learn Jason Baker2009-12-19T16:33:17Z2009-12-19T16:33:17Z<p>If you're coming from a functional programming background, <a href="http://packages.python.org/pysistence/" rel="nofollow">pysistence</a> may be a good place to look.</p>
<p>Full disclosure: I wrote it.</p>
http://stackoverflow.com/questions/1931781/what-is-the-use-of-strings-like-mode-python-found-at-the-top-of-some-p/1931807#19318073Answer by Jason Baker for What is the use of strings like "-*- Mode: Python -*-" found at the top of some python files?Jason Baker2009-12-19T03:03:16Z2009-12-19T03:03:16Z<p>The first line is an emacs thing (although it may also be a vi thing). It basically tells it that it should use python-mode to read the file. You'll usually see this if the file ends in an extension other than .py.</p>
<p>As mentioned, the second line deals with spacings.</p>
http://stackoverflow.com/questions/1930170/what-is-the-simplest-most-portable-way-to-send-an-email-in-elisp2What is the simplest, most portable way to send an email in elisp?Jason Baker2009-12-18T19:17:24Z2009-12-18T19:47:40Z
<p>I'd like to write a little emacs command to send an email. What's the simplest way to do this? I know there are a lot of mail-sending plugins for emacs, but I really just need to send a simple little email.</p>
http://stackoverflow.com/questions/1914605/what-does-pythons-gil-have-to-do-with-the-garbage-collector9What does Python's GIL have to do with the garbage collector?Jason Baker2009-12-16T13:16:57Z2009-12-17T12:50:09Z
<p>I just saw <a href="http://code.google.com/p/unladen-swallow/wiki/ProjectPlan#Global%5FInterpreter%5FLock" rel="nofollow">this section of Unladen Swallow's documentation</a> come up on Hacker News. Basically, it's the Google engineers saying that they're not optimistic about removing the GIL. However, it seems as though there is discussion about the garbage collector interspersed with this talk about the GIL. Could someone explain the relation to me?</p>
http://stackoverflow.com/questions/1914605/what-does-pythons-gil-have-to-do-with-the-garbage-collector/1921565#19215650Answer by Jason Baker for What does Python's GIL have to do with the garbage collector?Jason Baker2009-12-17T12:50:09Z2009-12-17T12:50:09Z<p>I just found another point of view on this subject here: <a href="http://renesd.blogspot.com/2009/12/python-gil-unladen-swallow-reference.html" rel="nofollow">http://renesd.blogspot.com/2009/12/python-gil-unladen-swallow-reference.html</a></p>
http://stackoverflow.com/questions/1342584/how-do-you-unit-test-templating-code0How do you unit test templating code?Jason Baker2009-08-27T17:33:33Z2009-12-16T19:51:45Z
<p>For example, I have a piece of code that's generating a SQL*Loader control file from this template (using Python):</p>
<pre><code>template = """
LOAD DATA
INFILE '%(file_path)s'
APPEND
INTO TABLE %(table_name)s
FIELDS TERMINATED BY "%(delimiter)"
OPTIONALLY ENCLOSED BY ""
(\n%(column_specifications)s\n)
"""
</code></pre>
<p>There are only two ways that I can think of to unit test this:</p>
<ol>
<li>Come up with inputs, figure out what the output should look like, then assert that the output is equal to that.</li>
<li>Test that certain strings that should be in the file are in the file.</li>
</ol>
<p>To me, these tests represent two different extremes. The first technique seems very fragile because I have to update the test if I do so much as change the whitespace. The second technique seems almost useless because it doesn't really test that text is going in the right place. Is there any kind of happy medium here that will keep my tests simple?</p>
http://stackoverflow.com/questions/1024074/can-a-test-class-become-a-god-object3Can a test class become a "God object"?Jason Baker2009-06-21T14:48:17Z2009-12-16T19:45:09Z
<p>I'm working on a backend for an open source Python ORM. The library includes a set of 450 test cases for each backend, all lumped into one giant test class.</p>
<p>To me, that sounds like a lot for one class, but I've never worked on a project that <em>has</em> 450 test cases (I believe this library has ~2000 test cases not including the test cases for each backend). Am I correct in feeling this is a bit on the high end (given that there's not really any magic number above which you should break something up), or is it just not as big a deal for a test class to have so many tests?</p>
<p>And even if that's not too many test cases, how would one go about refactoring an overly large test class? Most of my knowledge about refactoring is around making sure that tests are in place for the code that's being refactored. I've never had to deal with a situation where it's the tests themselves that need to be refactored.</p>
<p><strong>EDIT</strong>: Previously, I had said that these were unit tests, which isn't quite true. These are more appropriately termed integration tests.</p>
http://stackoverflow.com/questions/1103559/what-code-dont-you-test7What code don't you test? [closed]Jason Baker2009-07-09T12:33:14Z2009-12-16T19:32:23Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/153234/how-deep-are-your-unit-tests">How deep are your unit tests?</a> </p>
</blockquote>
<p>Ok, so it's common wisdom that it's impractical (and maybe not even preferable) to get 100% test coverage. In my experience, there's some code that's simply more trouble to test than it is practical to do so. I've kind of developed an intuition about this. But my team is sort of new to the whole test first way of thinking. I'm having trouble thinking of any guidelines on this subject.</p>
<p>I'll take that as a prompt to mean that maybe my intuition is wrong. So I'll pose the question to you guys: what code <em>shouldn't</em> be unit tested? Bear in mind that we're in legacy code land (at least in Michael Feathers's definition), and I'm trying to push a "test existing code as you go" approach.</p>
http://stackoverflow.com/questions/61661/windows-server-2003-default-administrator-password2Windows server 2003 default administrator passwordJason Baker2008-09-14T21:20:05Z2009-12-16T14:37:23Z
<p>Sorry if this is an overly simplistic question, but I'm a bit stuck here. :)</p>
<p>I need a windows machine for me to do some programming for class. Since I have my Macbook with me everywhere I go, I figured that it would be easiest to install a vm. And since I can get a copy of Windows server 2k3 for free via dreamspark, I thought I'd try to do that.</p>
<p>Here's what happened though: I installed windows server (disk one). When the system booted up, vmware automatically installed VMWare tools and prompted me to restart. There was also a prompt to start the installation of disc 2, but I figured it would be better to restart before doing that.</p>
<p>When the machine came back up, I was prompted to log in as the administrator. The problem is that I wasn't prompted to make an administrator account or password. Is there a default password I can use? I've tried all the obvious ones (blank, password, etc) and googling, but I didn't come up with anything.</p>
http://stackoverflow.com/questions/1897609/non-mainstream-languages-bad-for-your-resume/1903645#19036450Answer by Jason Baker for Non-Mainstream Languages, Bad for your resume? Jason Baker2009-12-14T21:30:59Z2009-12-14T21:30:59Z<p>I've never been involved in hiring before, but one thing I have learned is never to underestimate the points you get just for showing passion. Typically, people who go out and learn more "hardcore" languages are either in the passionate category or are masochists.</p>
<p>My advice: learn the languages you really want to learn. If you don't really want to learn Java, chances are you won't want a job working with Java.</p>
http://stackoverflow.com/questions/647872/how-do-i-compile-dos-programs-on-debian4How do I compile DOS programs on Debian?Jason Baker2009-03-15T14:15:44Z2009-12-13T09:25:03Z
<p>For my assembly language class, we're writing DOS programs using DPMI. Unfortunately, I don't have access to a 32-bit windows machine all the time. I do have a Debian virtual machine installed on just about every computer I do use.</p>
<p>I've got both DOSBox and DOSEMU installed. Is there any way that I can assemble and compile the programs in Linux rather than DOS? I'm using nasm, so I don't seem to have any problems getting it assembledin DOS format. However, I'm having trouble running it through the compiler with my C code and getting a DOS executable (using either gcc or MinGW).</p>
<p>Is there some way to do this or am I pretty much going to have to install all the tools under DOS?</p>
http://stackoverflow.com/questions/1889967/setting-python-path-while-developing-library-module/1890181#18901811Answer by Jason Baker for Setting Python path while developing library moduleJason Baker2009-12-11T19:01:00Z2009-12-11T19:01:00Z<p>You might also consider using <a href="http://jacobian.org/writing/django-apps-with-buildout/" rel="nofollow">zc.buildout</a>. It allows you to create entry points with customized python paths.</p>
http://stackoverflow.com/questions/1877029/dos-sqlplus-handle-is-invalid-error/1882575#18825750Answer by Jason Baker for DOS/sqlplus "Handle is invalid" error?Jason Baker2009-12-10T17:22:25Z2009-12-10T17:22:25Z<blockquote>
<p>Made the change to use @ instead of <.
This gets around the error but now the
script only executes the first file
and then leaves you at the SQL>
prompt. To get the second file to
execute you have to type exit at the
prompt, then the second file runs. Not
sure how to get both files to execute.
??</p>
</blockquote>
<p>I ended up writing a python script to run sql plus and then exit it to get around this issue. I have yet to find any way around that limitation. Although you would only have to deal with the issue once if you use <code>@@</code> as was suggested. You would just have to run the second script from the first script.</p>
http://stackoverflow.com/questions/172306/how-are-you-planning-on-handling-the-migration-to-python-38How are you planning on handling the migration to Python 3?Jason Baker2008-10-05T17:08:30Z2009-12-10T12:06:21Z
<p>I'm sure this is a subject that's on most python developers' minds considering that Python 3 is coming out soon. Some questions to get us going in the right direction:</p>
<ol>
<li><p>Will you have a python 2 and python 3 version to be maintained concurrently or will you simply have a python 3 version once it's finished?</p></li>
<li><p>Have you already started or plan on starting soon? Or do you plan on waiting until the final version comes out to get into full swing?</p></li>
</ol>
http://stackoverflow.com/questions/35366/varchar-vs-nvarchar-performance19varchar vs nvarchar performanceJason Baker2008-08-29T21:41:57Z2009-12-10T00:10:00Z
<p>I'm working on a database for a small web app at my school using SQL Server 2005. I see a couple of schools of thought on the issue of varchar vs nvarchar:</p>
<ol>
<li>Use varchar unless you deal with a lot of internationalized data, then use nvarchar.</li>
<li>Just use nvarchar for everything.</li>
</ol>
<p>I'm beginning to see the merits of view 2. I know that nvarchar does take up twice as much space, but that isn't necessarily a huge deal since this is only going to store data for a few hundred students. To me it seems like it would be easiest not to worry about it and just allow everything to use nvarchar. Or is there something I'm missing?</p>
http://stackoverflow.com/questions/1876336/in-what-areas-of-programming-is-a-knowledge-of-mathematics-helpful/1876437#187643713Answer by Jason Baker for In what areas of programming is a knowledge of mathematics helpful?Jason Baker2009-12-09T20:00:14Z2009-12-09T20:00:14Z<p>I think that a lot of programmers use more math than they think they do. It's just that it comes so intuitively to them that they don't even think about it. For instance, every time you write an if statement are you not using your Discrete Math knowledge?</p>
http://stackoverflow.com/questions/1875497/dynamic-function-with-local-variables/1875587#18755870Answer by Jason Baker for Dynamic function with local variablesJason Baker2009-12-09T17:45:01Z2009-12-09T17:59:42Z<p>For this simplified example, I think that what you have works pretty well (aside from being a bit hacky). While the <code>i=i</code> part can be ugly and tricky, it is a relatively well known way to make closures. Add a comment if you're afraid someone won't get it.</p>
<p>However, if you're doing something that's more complex, I'd definitely agree with S. Lott above.</p>
<p>One other possible approach:</p>
<pre><code>def make_property(i, dict):
def fget(self):
return i
dict['f%d' % i] = property(fget)
class Test(object):
def __metaclass__(name, bases, dict):
for i in range(5):
make_property(i, dict)
return type(name, bases, dict)
</code></pre>
<p>Personally, I feel that this makes the whole thing a lot easier to understand as you're separating out each iteration of the loop into its own function.</p>
http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-python4How do I determine an open file's size in Python?Jason Baker2009-12-08T14:33:47Z2009-12-09T17:36:47Z
<p>There's a file that I would like to make sure does not grow larger than 2 GB (as it must run on a system that uses ext 2). What's a good way to check a file's size bearing in mind that I will be writing to this file in between checks? In particular, do I need to worry about buffered, unflushed changes that haven't been written to disk yet?</p>
http://stackoverflow.com/questions/136880/sell-me-on-using-const-correctness12Sell me on using const correctnessJason Baker2008-09-25T23:34:21Z2009-12-09T02:40:20Z
<p>So why exactly is it that it's always recommended to use const as often as possible? It seems to me that using const can be more of a pain than a help in C++. But then again, I'm coming at this from the python perspective: if you don't want something to be changed, don't change it. So with that said, here are a few questions:</p>
<ol>
<li><p>It seems like every time I mark something as const, I get an error and have to change some other function somewhere to be const too. Then this causes me to have to change <em>another</em> function somewhere else. Is this something that just gets easier with experience?</p></li>
<li><p>Are benefits of using const <em>really</em> enough to compensate for the trouble? If you don't intend on changing an object, why not just not write code that changes it?</p></li>
</ol>
<p>I should note that at this point in time, I'm most focused on the benefits of using const for correctness and maintainability purposes, although it is also nice to have an idea of the performance implications.</p>
<p><strong>EDIT</strong>: I'm told that the correct term is const correctness, so that's what the title is now.</p>
http://stackoverflow.com/questions/1867563/is-it-a-good-idea-to-let-files-grow-above-2gb-in-ext20Is it a good idea to let files grow above 2GB in ext2? [closed]Jason Baker2009-12-08T15:05:24Z2009-12-08T15:05:24Z
<p>I'm working on a program that needs to run on a Linux distro with an ext2 filesystem. This program will write files which may become very large. I notice that ext2 has a maximum file size of 16GB to 64GB. However, one thing on wikipedia's page that scared me somewhat is the following line:</p>
<blockquote>
<p>There are also many userspace programs
that can't handle files larger than 2
GB.</p>
</blockquote>
<p>...when it's talking about ext2's limitations. Does this mean that I should be careful about letting a file grow larger than 2 GB?</p>
http://stackoverflow.com/questions/1857382/is-there-any-platform-independent-way-to-access-the-clipboard1Is there any platform-independent way to access the clipboard?Jason Baker2009-12-07T02:03:43Z2009-12-07T21:02:00Z
<p>I have a small side project I want to write and have yet to decide on a language. Ultimately, I want a way to access and/or modify the clipboard in a platform-independent way. </p>
<p>I'd like to learn a new language to do this, preferably something that:</p>
<ol>
<li>I'll learn a lot from.</li>
<li>Will look good on my resume.</li>
</ol>
<p>...and I'm leaning towards a functional language of some kind (Lisp would be ideal). That said, I might also want to experiment with interfacing C with other languages, so a C library would also be acceptable. Are there any libraries out there that would do what I'm looking for in a language that meets the above criteria?</p>
http://stackoverflow.com/questions/1857382/is-there-any-platform-independent-way-to-access-the-clipboard/1862865#18628650Answer by Jason Baker for Is there any platform-independent way to access the clipboard?Jason Baker2009-12-07T21:02:00Z2009-12-07T21:02:00Z<p>One approach to this is to use <a href="http://www.javapractices.com/topic/TopicAction.do?Id=82" rel="nofollow">Java's clipboard class</a>. This gives me a pretty wide selection of languages to choose from.</p>
http://stackoverflow.com/questions/1860999/list-of-fundamental-data-structures-what-am-i-missing/1861169#18611690Answer by Jason Baker for List of fundamental data structures - what am I missing?Jason Baker2009-12-07T16:37:45Z2009-12-07T16:37:45Z<p>You might consider <a href="http://en.wikipedia.org/wiki/Disjoint-set%5Fdata%5Fstructure" rel="nofollow">union/find datastructures</a>. They are fundamental to some graph algorithms.</p>
http://stackoverflow.com/questions/1947344/fastcgi-cherrypy-and-python/1947512#1947512Comment by Jason Baker on fastcgi, cherrypy, and pythonJason Baker2009-12-22T18:24:14Z2009-12-22T18:24:14ZBear in mind that CherryPy is actually two components: a framework and server. If you're using lighttpd, then you're just using the framework. If you use the server in development, then you don't need to worry about this as it will autoreload automagically. Once you move to production, <i>then</i> I would switch to lighttpd.http://stackoverflow.com/questions/1947344/fastcgi-cherrypy-and-python/1947440#1947440Comment by Jason Baker on fastcgi, cherrypy, and pythonJason Baker2009-12-22T16:37:18Z2009-12-22T16:37:18ZNote that this is a setting to the CherryPy <i>webserver</i>, not the framework.http://stackoverflow.com/questions/1947344/fastcgi-cherrypy-and-python/1947460#1947460Comment by Jason Baker on fastcgi, cherrypy, and pythonJason Baker2009-12-22T16:35:22Z2009-12-22T16:35:22Zmod_wsgi doesn't solve this problem. Unless I'm mistaken, the biggest advantage that mod_wsgi gives you is the ability to restart <i>individual applications</i>. You still have to restart every time you make a change though.http://stackoverflow.com/questions/1946688/is-wsa-compiler-in-boo-safe-to-useComment by Jason Baker on Is WSA compiler in BOO safe to use?Jason Baker2009-12-22T15:18:55Z2009-12-22T15:18:55ZErm.... in the second example, I actually <i>didn't</i> notice a comma...http://stackoverflow.com/questions/400646/how-to-weed-out-the-bad-programmers-from-the-competent-ones-in-the-interview-proc/400886#400886Comment by Jason Baker on How to weed out the bad programmers from the competent ones in the interview processJason Baker2009-12-20T19:20:30Z2009-12-20T19:20:30Z@Ace - I don't think it's fair to say "no personal projects = no hire". That said, you have to be able to <i>demonstrate</i> passion to your employer. Personal projects are probably the best way to do this.http://stackoverflow.com/questions/1933451/why-should-exec-and-eval-be-avoided/1933502#1933502Comment by Jason Baker on Why should exec() and eval() be avoided?Jason Baker2009-12-19T21:08:34Z2009-12-19T21:08:34ZI don't recall where it comes from, but exit isn't a built-in function. Somewhere in the documentation, it says that you shouldn't rely on this function existing except at the interactive interpreter. Of course, that doesn't matter much if you're trying to break into a system. :-)http://stackoverflow.com/questions/1933451/why-should-exec-and-eval-be-avoided/1933463#1933463Comment by Jason Baker on Why should exec() and eval() be avoided?Jason Baker2009-12-19T17:11:14Z2009-12-19T17:11:14ZJust an FYI, that doesn't work. You can only embed one expression in an eval statement. That embeds two statements....
In fact, this might need a warning because I just now realized I just tried those two lines on my computer. :-/http://stackoverflow.com/questions/1930170/what-is-the-simplest-most-portable-way-to-send-an-email-in-elisp/1930183#1930183Comment by Jason Baker on What is the simplest, most portable way to send an email in elisp?Jason Baker2009-12-18T19:31:01Z2009-12-18T19:31:01ZThat's true. But I was wanting to send it programmatically. It looks like compose-mail will bring up a new frame to compose the mail in.http://stackoverflow.com/questions/421880/do-you-keep-your-build-tools-in-version-control/421939#421939Comment by Jason Baker on Do you keep your build tools in version control?Jason Baker2009-12-10T17:17:24Z2009-12-10T17:17:24Z@wilth - what seems to be more popular these days is having a script that will download those things automatically.http://stackoverflow.com/questions/1875497/dynamic-function-with-local-variables/1875562#1875562Comment by Jason Baker on Dynamic function with local variablesJason Baker2009-12-09T17:49:18Z2009-12-09T17:49:18ZIn fairness, I think that the statement could also be an indicator that that each property is also a closure. And I feel that that would work better for this simple example. <i>However</i>, you may be right depending on how complex the OP's needs are.http://stackoverflow.com/questions/1875497/dynamic-function-with-local-variables/1875575#1875575Comment by Jason Baker on Dynamic function with local variablesJason Baker2009-12-09T17:46:21Z2009-12-09T17:46:21ZI think this is even more hacky than the original code. :-)http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-pythonComment by Jason Baker on How do I determine an open file's size in Python?Jason Baker2009-12-08T15:06:34Z2009-12-08T15:06:34Z@Peter - that's an interesting approach that I hadn't thought of. The thing is that I can see that as being a very platform-dependent thing. Correct me if I'm wrong.http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-pythonComment by Jason Baker on How do I determine an open file's size in Python?Jason Baker2009-12-08T14:59:13Z2009-12-08T14:59:13Z@~unutbu - I saw that, but the thing that scared me is this: "There are also many userspace programs that can't handle files larger than 2 GB"http://stackoverflow.com/questions/1867357/how-do-i-determine-an-open-files-size-in-pythonComment by Jason Baker on How do I determine an open file's size in Python?Jason Baker2009-12-08T14:40:49Z2009-12-08T14:40:49ZI suppose that's a possibility I hadn't thought of... I might try that as well.http://stackoverflow.com/questions/1860999/list-of-fundamental-data-structures-what-am-i-missing/1861015#1861015Comment by Jason Baker on List of fundamental data structures - what am I missing?Jason Baker2009-12-07T16:42:00Z2009-12-07T16:42:00ZI think a set is a datastructure in much the same way as queues and stacks are. They're sort of "non-terminal" data structures. They can be represented in many different ways, but they should all provide a consistent interface.