| python Programming Glossary: realizedDoes Jython have the GIL? http://stackoverflow.com/questions/1120354/does-jython-have-the-gil  answer my question as Nikhil has pointed out correctly. We realized that CPython is far ahead of us in this area and that we are.. 
 Python Interpreter blocks Multithreaded DNS requests? http://stackoverflow.com/questions/1212716/python-interpreter-blocks-multithreaded-dns-requests  played around a little bit with python and threads and realized even in a multithreaded script DNS requests are blocking. Consider.. 
 No Multiline Lambda in Python: Why not? http://stackoverflow.com/questions/1233448/no-multiline-lambda-in-python-why-not  in Python. I was thinking about this on the bus today and realized I couldn't think of a single Python construct that multiline.. 
 Python normal arguments vs. keyword arguments http://stackoverflow.com/questions/1419046/python-normal-arguments-vs-keyword-arguments  I'm talking about pure python no C Thanks. EDIT I just realized there's two types of each def func args kwargs args positional.. 
 What exactly do “u” and “r”string flags in Python, and what are raw string litterals? http://stackoverflow.com/questions/2081640/what-exactly-do-u-and-rstring-flags-in-python-and-what-are-raw-string-litte  are raw string litterals  While asking this question I realized I didn't know much about raw strings. For somebody claiming.. 
 Is there a reason Python strings don't have a string length method? http://stackoverflow.com/questions/237128/is-there-a-reason-python-strings-dont-have-a-string-length-method  why its not a method of the string object. Update Ok I realized I was embarrassingly mistaken. __len__ is actually a method.. 
 pythonic way to do something N times http://stackoverflow.com/questions/2970780/pythonic-way-to-do-something-n-times  time didn't depend on the value of i index variable . I realized that I was creating a variable I never used i and I thought.. 
 Which game scripting language is better to use: Lua or Python? [closed] http://stackoverflow.com/questions/356160/which-game-scripting-language-is-better-to-use-lua-or-python 
 Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages? [closed] http://stackoverflow.com/questions/3637668/why-are-scripting-languages-e-g-perl-python-ruby-not-suitable-as-shell-lang  without missing a beat 80 characters. At that moment I realized that this is finally a guy at Microsoft who gets shell programming.. 
 How to write a multidimensional array to a text file? http://stackoverflow.com/questions/3685265/how-to-write-a-multidimensional-array-to-a-text-file  just to draw everything out to it's full conclusion I just realized that numpy.savetxt chokes on ndarrays with more than 2 dimensions..... 
 Python: Advanced Nested List Comprehension Syntax http://stackoverflow.com/questions/3766711/python-advanced-nested-list-comprehension-syntax  Thank you PS While proof reading the question I realized that this does look a bit like a homework question it is not... 
 Python mechanize login to website http://stackoverflow.com/questions/4225721/python-mechanize-login-to-website  How do I stop mechanize from changing the strings EDIT I realized that rather than fighting mechanize I could just not urlencode.. 
 Why don't scripting languages output Unicode to the Windows console? http://stackoverflow.com/questions/4942305/why-dont-scripting-languages-output-unicode-to-the-windows-console  horrible legacy API . When Unicode came out many people realized it was useful. Unicode started as a pure 16 bit encoding so.. 
 Python Config Parser (Duplicate Key Support) http://stackoverflow.com/questions/5396144/python-config-parser-duplicate-key-support  implemented the above However my troubles started when I realized I wanted to support preserving inline comments and such. The.. 
 Python rounding error with float numbers http://stackoverflow.com/questions/5997027/python-rounding-error-with-float-numbers  Python script for varying the parameters of a simulation I realized the results with delta 0.29 and delta 0.58 were missing. On.. 
 Building Python and more on missing modules http://stackoverflow.com/questions/6171210/building-python-and-more-on-missing-modules  was neat and clear. I solved the problem as soon as I realized whenever I tried Python 2.7.1 I was actually using the one installed.. 
 Flask vs webapp2 for Google App Engine http://stackoverflow.com/questions/6774371/flask-vs-webapp2-for-google-app-engine  of the SDK handlers that work natively with tipfy I realized that this is a lost cause to support GAE for the long term best.. 
 Nice IDE for wxPython or Tkinter GUI Development [closed] http://stackoverflow.com/questions/800849/nice-ide-for-wxpython-or-tkinter-gui-development  programs but it's worth a try. After trying all these I realized they had all flaws and that nothing is better than just writing.. 
 Using Python's Multiprocessing module to execute simultaneous and separate SEAWAT/MODFLOW model runs http://stackoverflow.com/questions/9874042/using-pythons-multiprocessing-module-to-execute-simultaneous-and-separate-seawa  to read or even see that there was an error message I only realized this when I went back and tried to run the code using iPython.. 
 |