In the Python in the 2.x series Python 2.7 is the latest, and last, major release.

learn more… | top users | synonyms

84
votes
1answer
2k views

Why is early return slower than else?

This is a follow-up question to an answer I gave a few days back. Edit: it seems that the OP of that question already used the code I posted to him to ask the same question, but I was unaware of it. ...
76
votes
2answers
2k views

str performance in python

While profiling a piece of python code (python 2.6 up to 3.2), I discovered that the str method to convert an object (in my case an integer) to a string is almost an order of magnitude slower than ...
64
votes
1answer
2k views

Python: why are * and ** faster than / and sqrt()?

While optimising my code I realised the following: >>> from timeit import Timer as T >>> T(lambda : 1234567890 / 4.0).repeat() [0.22256922721862793, 0.20560789108276367, ...
36
votes
3answers
35k views

How to uninstall Python 2.7 on a Mac OS X 10.6.4?

I want to completely remove Python 2.7 from my Mac OS X 10.6.4. I managed to remove the entry from the PATH variable by reverting my .bash_profile. But I also want to remove all directories, files, ...
27
votes
5answers
2k views

Python: What's the difference between __builtin__ and __builtins__?

I was coding today and noticed something. If I open a new interpreter session (IDLE) and check what's defined with the dir function I get this: $ python >>> dir() ['__builtins__', '__doc__', ...
19
votes
3answers
935 views

Python — what is NOT in 2.7 that IS in 3.1? So many things have been back-ported, what is NOT?

I've been following the saga of Python 3.x and have watched the 3.x features gradually getting back-ported to the 2.x line. Most of the libraries I use haven't been ported and some (e.g. Twisted) ...
18
votes
4answers
8k views

Why is parenthesis in print voluntary in Python 2.7?

In Python 2.7 both the following will do the same print("Hello, world!") # Prints "Hello, world!" print "Hello, world!" # Prints "Hello, world!" However the following will not print("Hello,", ...
18
votes
7answers
441 views

Constructing the largest number possible by rearranging a list

Say I have an array of positive whole integers; I'd like to manipulate the order so that the concatenation of the resultant array is the largest number possible. For example [97, 9, 13] results in ...
18
votes
4answers
2k views

What is the cross-platform method of enumerating serial ports in Python (including virtual ports)?

Note: I'm using Python 2.7, and pySerial for serial communications. I found this article which lists two ways: http://www.zaber.com/wiki/Software/Python#Displaying_a_list_of_available_serial_ports ...
17
votes
13answers
934 views

What is the fastest way to the delete lines in a file which have no match in a second file?

I have two files, wordlist.txt and text.txt. The first file, wordlist.txt, contains a huge list of words in Chinese, Japanese, and Korean, e.g.: 你 你们 我 The second file, text.txt, contains long ...
17
votes
1answer
441 views

Huge memory leak in repeated os.path.isdir calls?

I've been scripting something that has to do with scanning directories and noticed a severe memory leak when calling os.path.isdir, so I've tried the following snippet: def func(): if not ...
16
votes
6answers
586 views

Does this prime function actually work?

Since I'm starting to get the hang of Python, I'm starting to test my newly acquired Python skills on some problems on projecteuler.net. Anyways, at some point, I ended up making a function for ...
15
votes
4answers
11k views

gcc-4.2 failed with exit status 1

I've been looking for an answer to this issue but I couldn't find it, so here it is. I'm trying to install Uniconvertor with a setup.py file into a MacOS X Lion (Python 2.7.2) using: python setup.py ...
15
votes
3answers
751 views

memoization library for python 2.7

I see that python 3.2 has memoization as a decorator in functools library. http://docs.python.org/py3k/library/functools.html#functools.lru_cache Unfortunately it is not yet backported to 2.7. Is ...
14
votes
2answers
16k views

Installing Numpy on 64bit Windows 7 with Python 2.7.3

It looks like the only 64 bit windows installer for Numpy is for Numpy version 1.3.0 which only works with Python 2.6 http://sourceforge.net/projects/numpy/files/NumPy/ It strikes me as strange that ...
14
votes
2answers
879 views

End of support for python 2.7?

Is there a known date/timeframe when python 2.7 will not be supported any more in favor of python 3?
13
votes
3answers
2k views

A Python 2.7, 3.0 Question for Pythonistas - Best Practices?

I am learning to program in Python and we have version 2.7 installed at work. Whenever I try to dive deep into Python, I never liked the dea of diving into a deprecated version (2.7). My work is not ...
13
votes
2answers
1k views

Multiple keys per value

Is it possible to assign multiple keys per value in a Python dictionary. One possible solution is to assign value to each key: dict = {'k1':'v1', 'k2':'v1', 'k3':'v1', 'k4':'v2'} but this is not ...
12
votes
4answers
381 views

Python: shuffling list, but keeping some elements frozen

I've such a problem: There is a list of elements of class CAnswer (no need to describe the class), and I need to shuffle it, but with one constraint - some elements of the list have CAnswer.freeze ...
12
votes
6answers
4k views

Any way to properly pretty-print ordered dictionaries in Python?

I like the pprint module in Python. I use it a lot for testing and debugging. I frequently use the width option to make sure the output fits nicely within my terminal window. It has worked fine until ...
12
votes
4answers
4k views

Using Google App Engine SDK with Python 2.7 on Mac OS X 10.6

I need to run Python 2.7 on my Mac Snow Leopard, which has Python 2.6 installed. According to this answer, running the Python 2.7 mpkg installer from Python.org should get me there. The reason I ...
12
votes
3answers
1k views

Julia's Python performance example in pypy

Julia is a new statistical programming language that claims significantly better performance than competing languages. I'm trying to verify this. Julia has a performance test written in Python: ...
11
votes
6answers
407 views

How to use return value of a function as condition of while that returns tuple in python

I was looking for something like this but I couldn't find so here it goes. Some background I use opencv to retrieve frames from a video file. Usually people do it in an endless loop like: while ...
11
votes
2answers
367 views

Pythonic way for `return (value == 'ok') ? 'ok' : 'nok' ` [duplicate]

Possible Duplicate: Ternary conditional operator in Python I have this problem and have no idea to ask google for this: (value == 'ok') ? 'ok' : 'not ok' I mean that grammar with: ...
11
votes
2answers
484 views

Python list greater than number

I have discovered the a list is greater than a number. >>> [1,2,3] > 1000 True Is there some reason why this works? I can't convert a list to an int with int([1,2,3]). The int can't be ...
11
votes
2answers
3k views

Error Python 2.7 on Google App Engine - Threadsafe cannot be enabled with CGI handler

I have tried to move to Python 2.7 from Python 2.5 but I keep getting the same error everytime. I have made a very simple test in Python 2.5 working with the app.yaml file and just one script main.py ...
11
votes
4answers
10k views

How do I install PyCrypto on Windows?

I've read every other google source and SO thread, with nothing working. Python 2.7.3 32bit installed on Windows 7 64bit. Download, extracting, and then trying to install PyCrypto results in "Unable ...
11
votes
3answers
300 views

Efficient reading of 800 GB XML file in Python 2.7

I am reading an 800 GB xml file in python 2.7 and parsing it with an etree iterative parser. Currently, I am just using open('foo.txt') with no buffering argument. I am a little confused whether this ...
11
votes
2answers
4k views

Installing numpy as a dependency with setuptools

This might be a follow up question of this one. I am using setuptools to install a package of mine. As a dependency I have listed numpy. I am using Python2.7 and when I do python setup.py install ...
10
votes
5answers
3k views

Redirecting stdout to “nothing” in python

I have a large project consisting of sufficiently large number of modules, each printing something to the standard output. Now as the project has grown in size, there are large no. of print statements ...
10
votes
7answers
339 views

Python - how to relaunch the application on the fly while the application having a TCP port in listening mode?

What is the best way to relaunch the application where it was running a listening TCP port? Problem is: if i quickly launch the application as relaunch it fails because the socket which was listening ...
10
votes
4answers
2k views

How can I use both a key and an index for the same dictionary value?

I need an array of data that has a numeric index, but also a human readable index. I need the latter because the numeric indices may change in the future, and I need the numeric indices as a part of a ...
10
votes
2answers
208 views

Django - multiple pluralization in admin model

I have googled this for very long time but with no results. I`m beginner to Django so I don't know all features it have. But this problem is very important for client :-( Could you help me, please? ...
10
votes
1answer
246 views

Impossible lookbehind with a backreference

From my understanding, (.)(?<!\1) should never match. Actually, php's preg_replace even refuses to compile this and so does ruby's gsub. The python re module seems to have a different opinion ...
10
votes
1answer
154 views

The correct way to override the `__dir__` method in python

This question is meant to be more about __dir__ than about numpy. I have a subclass of numpy.recarray (in python 2.7, numpy 1.6.2), and I noticed recarray's field names are not listed when diring the ...
10
votes
1answer
129 views

Is it possible to save the Python interpreter's state to a file?

What if, when an user is using my Python application and the application crashes, the state of the application can be saved to a file and sent to me, the developer. I open the Python interpreter and ...
9
votes
3answers
5k views

How to convert a Python datetime object to seconds

Apologies for the simple question... I'm new to Python... I have searched around and nothing seems to be working. I have a bunch of datetime objects and I want to calculate the number of seconds ...
9
votes
2answers
2k views

How to hide output of subprocess in Python 2.7

I'm using eSpeak on Ubuntu and have a Python 2.7 script that prints and speaks a message: import subprocess text = 'Hello World.' print text subprocess.call(['espeak', text]) eSpeak produces the ...
9
votes
1answer
311 views

How should I understand the output of dis.dis?

I would like to understand how to use dis (the dissembler of Python bytecode). Specifically, how should one interpret the output of dis.dis (or dis.disassemble)? . Here is a very specific example ...
9
votes
3answers
758 views

Why does json.dumps(list(np.arange(5))) fail while json.dumps(np.arange(5).tolist()) works

I noticed this problem when a computer running Ubuntu was updated recently and the default version of Python changed to 2.7. import json import numpy as np json.dumps(list(np.arange(5))) # Fails, ...
9
votes
1answer
152 views

Does '[ab]+' equal '(a|b)+' in python re module?

I think pat1 = '[ab]' and pat2 = 'a|b' have the same function in Python(python2.7, windows) 're' module as a regular expression pattern. But I am confused with '[ab]+' and '(a|b)+', do they have the ...
9
votes
1answer
418 views

double quotes in string representation

This snippet: formatter = "%r %r %r %r" print formatter % ( "I had this thing.", "That you could type up right.", "But it didn't sing.", "So I said goodnight." ) when run, prints ...
9
votes
1answer
236 views

How to avoid copying the level Surface every frame in worms-like game?

I am working on a game that has destructible terrain (like in the game Worms, or Scorched Earth) and uses pixel perfect collision detection via masks. The level is a single surface and how it works ...
9
votes
3answers
392 views

PyDev Breakpoints in App Engine 1.7.6 broken?

I just upgraded to the App Engine 1.7.6 SDK for my python app and realised that breakpoints no longer work in PyDev (Eclipse plugin) when using the new dev_appserver.py. Does anyone know of a way of ...
9
votes
1answer
139 views

How come these Python codes perform so much differently

Please look at the following code to solve the same set of problem, I do not think that mentioning the problem would anyhow help the purpose, it's yet another iteration of the Josephus problem: ...
8
votes
4answers
12k views

python error: no module named pylab

I am new to Python and want to use its plot functionality to create graphs. I am using ubuntu 12.04. I followed the Python installation steps from ...
8
votes
3answers
160 views

empty_string in some_string - always true? [duplicate]

Possible Duplicate: Why empty string is on every string? I wonder why Python returns True whenever I check if the empty string is in a string, and why its index is zero. For instance: '' ...
8
votes
1answer
9k views

zlib module missing

I have compiled and installed python 2.7 on my ubuntu lucid. But I am unable to install setuptools for python 2.7 because the data decompression module zlib is not present. This is the exact error: ...
8
votes
2answers
876 views

Reversing bits of Python integer

Given a decimal integer (eg. 65), how does one reverse the underlying bits in Python? ie. the following operation: 65 → 01000001 → 10000010 → 130 It seems that this task can be broken down into ...
8
votes
4answers
15k views

Python: Print to File

Why does trying to print directly to a file instead of sys.stdout produce the following syntax error: Python 2.7.2+ (default, Oct 4 2011, 20:06:09) [GCC 4.6.1] on linux2 Type "help", "copyright", ...

1 2 3 4 5 137