<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>effbot.org</title><link>http://effbot.org</link><description>effbot.org</description><item><title>(A Semi-Official) Python FAQ Zone</title><link>http://effbot.org/pyfaq/index.htm</link></item><item><title>Category: extending</title><link>http://effbot.org/pyfaq/extending-index.htm</link></item><item><title>link c index</title><link>http://effbot.org/pyfaq/zone-link-c.htm</link></item><item><title>Writing C is hard; are there any alternatives?</title><link>http://effbot.org/pyfaq/writing-c-is-hard-are-there-any-alternatives.htm</link></item><item><title>Work In Progress</title><link>http://effbot.org/pyfaq/work-in-progress.htm</link></item><item><title>Category: windows</title><link>http://effbot.org/pyfaq/windows-index.htm</link></item><item><title>Why was Python created in the first place?</title><link>http://effbot.org/pyfaq/why-was-python-created-in-the-first-place.htm</link></item><item><title>Why must 'self' be used explicitly in method definitions and calls?</title><link>http://effbot.org/pyfaq/why-must-self-be-used-explicitly-in-method-definitions-and-calls.htm</link></item><item><title>Why must dictionary keys be immutable?</title><link>http://effbot.org/pyfaq/why-must-dictionary-keys-be-immutable.htm</link></item><item><title>Why is there no goto?</title><link>http://effbot.org/pyfaq/why-is-there-no-goto.htm</link></item><item><title>Why isn't there a switch or case statement in Python?</title><link>http://effbot.org/pyfaq/why-isn-t-there-a-switch-or-case-statement-in-python.htm</link></item><item><title>Why isn't all memory freed when Python exits?</title><link>http://effbot.org/pyfaq/why-isn-t-all-memory-freed-when-python-exits.htm</link></item><item><title>Why is join() a string method instead of a list or tuple method?</title><link>http://effbot.org/pyfaq/why-is-join-a-string-method-instead-of-a-list-or-tuple-method.htm</link></item><item><title>Why is it called Python?</title><link>http://effbot.org/pyfaq/why-is-it-called-python.htm</link></item><item><title>Why is cPickle so slow?</title><link>http://effbot.org/pyfaq/why-is-cpickle-so-slow.htm</link></item><item><title>Why don't my signal handlers work?</title><link>http://effbot.org/pyfaq/why-don-t-my-signal-handlers-work.htm</link></item><item><title>Why do my Tkinter images not appear?</title><link>http://effbot.org/pyfaq/why-do-my-tkinter-images-not-appear.htm</link></item><item><title>Why does Python use methods for some functionality (e.g. list.index()) but functions for other (e.g. len(list))?</title><link>http://effbot.org/pyfaq/why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list.htm</link></item><item><title>Why does Python use indentation for grouping of statements?</title><link>http://effbot.org/pyfaq/why-does-python-use-indentation-for-grouping-of-statements.htm</link></item><item><title>Why does Python sometimes take so long to start?</title><link>http://effbot.org/pyfaq/why-does-python-sometimes-take-so-long-to-start.htm</link></item><item><title>Why doesn't Python release the memory when I delete a large object?</title><link>http://effbot.org/pyfaq/why-doesnt-python-release-the-memory-when-i-delete-a-large-object.htm</link></item><item><title>Why doesn't Python have a "with" statement like some other languages?</title><link>http://effbot.org/pyfaq/why-doesn-t-python-have-a-with-statement-like-some-other-languages.htm</link></item><item><title>Why doesn't os.popen() work in PythonWin on NT?</title><link>http://effbot.org/pyfaq/why-doesn-t-os-popen-work-in-pythonwin-on-nt.htm</link></item><item><title>Why doesn't os.popen() and win32pipe.popen() work on Win9x?</title><link>http://effbot.org/pyfaq/why-doesn-t-os-popen-win32pipe-popen-work-on-win9x.htm</link></item><item><title>Why doesn't list.sort() return the sorted list?</title><link>http://effbot.org/pyfaq/why-doesn-t-list-sort-return-the-sorted-list.htm</link></item><item><title>Why doesn't closing sys.stdout (stdin, stderr) really close it?</title><link>http://effbot.org/pyfaq/why-doesn-t-closing-sys-stdout-stdin-stderr-really-close-it.htm</link></item><item><title>Why does my C extension suddenly crash under 2.5?</title><link>http://effbot.org/pyfaq/why-does-my-c-extension-suddenly-crash-under-2.5.htm</link></item><item><title>Why does -22 / 10 return -3?</title><link>http://effbot.org/pyfaq/why-does-22-10-return-3.htm</link></item><item><title>Why can't raw strings (r-strings) end with a backslash?</title><link>http://effbot.org/pyfaq/why-can-t-raw-strings-r-strings-end-with-a-backslash.htm</link></item><item><title>Why can't lambda forms contain statements?</title><link>http://effbot.org/pyfaq/why-can-t-lambda-forms-contain-statements.htm</link></item><item><title>Why can't I use an assignment in an expression?</title><link>http://effbot.org/pyfaq/why-can-t-i-use-an-assignment-in-an-expression.htm</link></item><item><title>Why are there separate tuple and list data types?</title><link>http://effbot.org/pyfaq/why-are-there-separate-tuple-and-list-data-types.htm</link></item><item><title>Why are Python strings immutable?</title><link>http://effbot.org/pyfaq/why-are-python-strings-immutable.htm</link></item><item><title>Why are floating point calculations so inaccurate?</title><link>http://effbot.org/pyfaq/why-are-floating-point-calculations-so-inaccurate.htm</link></item><item><title>Why are default values shared between objects?</title><link>http://effbot.org/pyfaq/why-are-default-values-shared-between-objects.htm</link></item><item><title>Why are colons required for the if/while/def/class statements?</title><link>http://effbot.org/pyfaq/why-are-colons-required-for-the-if-while-def-class-statements.htm</link></item><item><title>Why am I getting strange results with simple arithmetic operations?</title><link>http://effbot.org/pyfaq/why-am-i-getting-strange-results-with-simple-arithmetic-operations.htm</link></item><item><title>Where is the math.py (socket.py, regex.py, etc.) source file?</title><link>http://effbot.org/pyfaq/where-is-the-math-py-socket-py-regex-py-etc-source-file.htm</link></item><item><title>Where is Freeze for Windows?</title><link>http://effbot.org/pyfaq/where-is-freeze-for-windows.htm</link></item><item><title>Where in the world is www.python.org located?</title><link>http://effbot.org/pyfaq/where-in-the-world-is-www-python-org-located.htm</link></item><item><title>Where do nested functions live?</title><link>http://effbot.org/pyfaq/where-do-nested-functions-live.htm</link></item><item><title>Where do I start if I want to learn about the CPython implementation?</title><link>http://effbot.org/pyfaq/where-do-i-start-if-i-want-to-learn-about-the-cpython-implementation.htm</link></item><item><title>When importing module X, why do I get "undefined symbol: PyUnicodeUCS2*"?</title><link>http://effbot.org/pyfaq/when-importing-module-x-why-do-i-get-undefined-symbol-pyunicodeucs2.htm</link></item><item><title>When I edit an imported module and reimport it, the changes don't show up. Why does this happen?</title><link>http://effbot.org/pyfaq/when-i-edit-an-imported-module-and-reimport-it-the-changes-don-t-show-up-why-does-this-happen.htm</link></item><item><title>What WWW tools are there for Python?</title><link>http://effbot.org/pyfaq/what-www-tools-are-there-for-python.htm</link></item><item><title>What platform-specific GUI toolkits exist for Python?</title><link>http://effbot.org/pyfaq/what-platform-specific-gui-toolkits-exist-for-python.htm</link></item><item><title>What platform-independent GUI toolkits exist for Python?</title><link>http://effbot.org/pyfaq/what-platform-independent-gui-toolkits-exist-for-python.htm</link></item><item><title>What new developments are expected for Python in the future?</title><link>http://effbot.org/pyfaq/what-new-developments-are-expected-for-python-in-the-future.htm</link></item><item><title>What module should I use to help with generating HTML?</title><link>http://effbot.org/pyfaq/what-module-should-i-use-to-help-with-generating-html.htm</link></item><item><title>What kinds of global value mutation are thread-safe?</title><link>http://effbot.org/pyfaq/what-kinds-of-global-value-mutation-are-thread-safe.htm</link></item></channel></rss>