Search Results

10
votes
4answers
898 views

What is “thread local storage” in Python, and why do I need it?

In Python specifically, how do variables get shared between threads? Although I have used threading.Thread before I never really understood or saw examples of how variables got …
6
votes
2answers
171 views

What Python bindings are there for CVS or SVN?

I once did a cursory search and found no good CVS bindings for Python. I wanted to be able to write helper scripts to do some fine-grained manipulation of the repository and projects in it. I had …
0
votes
2answers
117 views

XSLT Transform of Unicode source

In my application I am using the 4Suite.org XSLT library to perform transformations of source XML. The syntax is li …
0
votes

Single quotes vs. double quotes in Python

It's probably a stylistic preference more than anything. I just checked PEP 8 and didn't see any mention of single versus double quotes. I prefer single quotes because its only one keystro …
3
votes

Is there anyway to do HTTP PUT in python

I needed to solve this problem too a while back so that I could act as a client for a RESTful API. I settled on httplib2 because it allowed me to send PUT and DELETE in addition to GET and POST. …
0
votes

How to bundle a python application including dependencies for windows?

My company uses the free InnoSetup tool. It is a moderately complex program that has tons of flexibility for building installers for windows. I believe that it creates .exe and not .msi files, ho …
2
votes

Recommended Python publish/subscribe/dispatch module ?

I recently looked carefully at py-amqplib to act as an AMQP client to a RabbitMQ broker. The latter tool is written in Erlang. …
2
votes

Is there a good, free Python IDE for Windows?

I have been using Eclipse with PyDev for a while now. Its pretty good but Eclipse is so bloated. I regularly see it using 300Mb of memory on Windows. It can hang and just be generally slow. YMM …
5
votes

How can I remove (chomp) a newline in Python?

The canonical way to strip end-of-line (EOL) characters is to use the string rstrip() method removing any trailing \r or \n. Here are examples for Mac, Windows, and Unix EOL characters. …