Documentation for Python 2.7, can be found here: http://docs.python.org/2.7 For an explanation on why it's the last 2.x release, see PEP 404.
65
votes
1answer
1k 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. ...
51
votes
1answer
1k 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, ...
18
votes
3answers
653 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) ...
11
votes
1answer
11k 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, ...
10
votes
2answers
210 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 ...
10
votes
3answers
1k 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 ...
7
votes
1answer
121 views
Why is an empty function call in python around 15% slower for dynamically compiled python code
This is pretty bad micro-optimizing, but I'm just curious. It usually doesn't make a difference in the "real" world.
So I'm compiling a function (that does nothing) using compile() then calling exec ...
7
votes
5answers
448 views
Multiple keys per 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 ...
7
votes
6answers
1k 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 ...
6
votes
3answers
402 views
GAE 1.5.5 local SDK fails to run with python2.7 runtime
GAE 1.5.5 looks to have some excellent, long-waited for features. However, they're not working for me yet.
I've downloaded and installed GAE 1.5.5, and am using a degenerate "AAA" app to test.
...
6
votes
4answers
336 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 ...
5
votes
4answers
141 views
Why python time has 61 seconds
Did anybody notice that the interval of second in Python datetime is [00,61]
see the table in the bottom of this page.
http://docs.python.org/library/datetime.html#strftime-strptime-behavior
Why?
5
votes
3answers
134 views
How do I wrap a C++ class with Cython?
I have a C++ class. It's made up of one .ccp file and one .h file. It compiles (I can write a main method that uses it successfully in c++). How do I wrap this class with Cython to make it ...
5
votes
6answers
101 views
Is it possible to modify variable in python that is in outer, but not global, scope?
Given following python 2.7 code:
def A() :
def B() :
b = 1
def C() :
# I can access 'b' from here.
print( b )
# But can i modify 'b' here? 'global' and assignment will not ...
5
votes
2answers
356 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 ...
5
votes
1answer
71 views
Numpy: equivalent of numpy.roll but only for data visualisation
Is there a way to perform a roll on an array, but instead of having a copy of the data having just a different visualisation of it?
An example might clarify: given b a rolled version of a...
...
5
votes
1answer
62 views
Numpy: need a hand in understanding what happens with the “in” operator
I would appreciate if somebody could help me with this (and explaining what's going on).
This works:
>>> from numpy import array
>>> a = array((2, 1))
>>> b = array((3, ...
5
votes
3answers
108 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 ...
5
votes
6answers
106 views
Python: efficient syntax for creating a list composed of strings
I am new to python and essentially trying to figure out the syntax that replicates this functionality: strings = ["foo", "bar", "apple"] with something similar to strings = [foo, bar, apple] so that I ...
5
votes
6answers
161 views
Python: how to join entries in a set into one string?
Basically, I am trying to join together the entries in a set in order to output one string. I am trying to use syntax similar to the join function for lists. Here is my attempt:
list = ...
5
votes
3answers
968 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,", ...
5
votes
2answers
106 views
Is there a way to find out the name of the file stdout is redirected to in Python
I know how to detect if my Python script's stdout is being redirected (>) using sys.stdout.isatty() but is there a way to discover what it's being redirected to?
For example:
python my.py > ...
5
votes
4answers
119 views
In a Python object, how can I see a list of properties that have been defined with the @property decorator?
I can see first-class member variables using self.__dict__, but I'd like also to see a dictionary of properties, as defined with the @property decorator. How can I do this?
4
votes
3answers
54 views
How to multiplex multiple blocking Python generators into one?
Consider the following pseudo code:
def g_user():
while True:
yield read_user_input()
def g_socket():
while True:
yield read_socket_input()
def g_combined(gu, gs):
# ...
4
votes
3answers
67 views
Getting attributes of a class
I want to get the attributes of a class, say:
class MyClass():
a = "12"
b = "34"
def myfunc(self):
return self.a
using MyClass.__dict__ gives me a list of attributes and functions, and ...
4
votes
2answers
123 views
How to create a query for matching keys?
I use the key of another User, the sponsor, to indicate who is the sponsor of a User and it creates a link in the datastore for those Users that have a sponsor and it can be at most one but a sponsor ...
4
votes
2answers
93 views
Python bool(Ellipsis) and bool(None)
I don't understand how are Ellipsis and None handled differently by bool(), when both seem to be identical in terms of the relevant attributes for truth-testing.
>>> bool(Ellipsis)
True
...
4
votes
3answers
121 views
Change in Python built in round() function between 2.4 and 2.7
Has the built in round() function in Python changed between 2.4 and 2.7?
Python 2.4:
Python 2.4.6 (#1, Feb 12 2009, 14:52:44)
[GCC 3.4.6 20060404 (Red Hat 3.4.6-8)] on linux2
Type "help", ...
4
votes
2answers
948 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 ...
4
votes
3answers
118 views
Parallelism in python isn't working right
I was developing an app on gae using python 2.7, an ajax call requests some data from an API, a single request could take ~200 ms, however when I open two browsers and make two requests at a very ...
4
votes
1answer
72 views
Bug with re.split function and re.DOTALL flag in re module of Python 2.7.1
I have a Mac running Lion and Python 2.7.1. I am noticing something very strange from the re module. If I run the following line:
print re.split(r'\s*,\s*', 'a, b,\nc, d, e, f, g, h, i, j, k,\nl, m, ...
4
votes
3answers
128 views
Checking if Two Massive Python Dictionaries are Equivalent
I have a massive python dictionary with over 90,000 entries. For reasons I won't get into, I need to store this dictionary in my database and then at a later point recompile dictionary from the ...
4
votes
1answer
199 views
Buffers and Memoryview Objects explained for the non-C programmer
Python 2.7 has introduced a new API for buffers and memoryview objects.
I read the documentation on them and I think I got the basic concept (accessing the internal data of an object in a raw form ...
4
votes
3answers
348 views
Python StringIO replacement that works with bytes instead of strings?
Is there any replacement for python StringIO class, one that will work with bytes instead of strings?
It may not be obvious but if you used StringIO for processing binary data you are out of luck ...
4
votes
2answers
80 views
Python equivalence of default in C#
Is there a way in python to get a types default value?
//C#
default(typeof(int))
I am looking for a more pythonic way to get type defaults?
#python
if(isinstance(myObj, int):
return 0
...
4
votes
3answers
129 views
Python: retrieve all properties of a class instance that uses the @property annotation
Is there an easy way to retrieve all properties of a class instance that use @property or property methods?
I have seen examples that use vars but that does not work a class like:
class ...
4
votes
3answers
367 views
How do you get all classes defined in a module but not imported?
I've already seen the following question but it doesn't quite get me where I want: Python: Get list of all classes within current module
In particular, I do not want classes that are imported, e.g. ...
4
votes
4answers
2k views
ImportError: No module named _ssl
Ubuntu Maverick w/Python 2.7:
I can't figure out what to do to resolve the following import error:
>>> import ssl
Traceback (most recent call last):
File "<stdin>", line 1, in ...
4
votes
2answers
209 views
Working around Python bug in different versions
I've come across a bug in Python (at least in 2.6.1) for the bytearray.fromhex function. This is what happens if you try the example from the docstring:
>>> bytearray.fromhex('B9 01EF')
...
3
votes
1answer
30 views
Deadlock in Python's subprocess popen
I'm having a problem where popen is deadlocking. Specifically, the thread (not the main thread) that runs the popen is stuck at:
File: "/usr/lib/python2.7/subprocess.py", line 679, in __init__
...
3
votes
5answers
77 views
how to pass a list of files to python open() method
I have a list of around 100 files form which I wanted to read and match one word.
Here's the piece of code I wrote.
import re
y = 'C:\\prova.txt'
var1 = open(y, 'r')
for line in var1:
if ...
3
votes
1answer
78 views
Can you easily create a list-like object in python that uses something like a descriptor for it's items?
I'm trying to write an interface that abstracts another interface somewhat.
The bottom interface is somewhat inconsistent about it requires, sometimes id's, and sometimes names. I'm trying to hide ...
3
votes
2answers
415 views
Python 2.7 on App Engine, simplejson vs native json, who's faster?
I've had the understanding that simplejson is much faster than the native json in Python, such as this thread:
`json` and `simplejson` module differences in Python
However, I was just thrown for a ...
3
votes
2answers
72 views
What is this print syntax? (print rightshift)
Looking at the source code of pstats I see this syntax:
print >> self.stream, "in %.3f seconds" % self.total_tt
print >> self.stream
What is this syntax, how is it called and how to use ...
3
votes
3answers
90 views
Numpy: checking if an element in a multidimensional array is in a tuple
It seems I still struggle with the "in" operator in numpy. Here's the situation:
>>> a = np.random.randint(1, 10, (2, 2, 3))
>>> a
array([[[9, 8, 8],
[4, 9, 1]],
...
3
votes
4answers
54 views
New instance of Python class with a non-None class attribute
I have a Python class that has a class attribute set to something other than None. When creating a new instance, the changes made to that attribute perpetuates through all instances.
Here's some code ...
3
votes
1answer
328 views
Compiling python code into a single exe
I've been trying to compile python code into a single exe, and i didn't manage to do it correctly.
I've tried pyinstaller, and this is the .spec file:
# -*- mode: python -*-
a = ...
3
votes
1answer
321 views
Learn Python the Hard Way ex41 Extra Credit
working my way through LPTHW and am stuck on the extra credit for exercise 41:
Extra Credit:
Add cheat codes to the game so you can get past the more difficult
rooms.
Instead of having ...
3
votes
3answers
42 views
Ordering things in python…?
I was under the impression that set() would order a collection much like .sort()
However it seems that it doesn't, what was peculiar to me was why it reorders the collection.
>>> h = '321'
...
3
votes
2answers
235 views
Python list intersection efficiency: generator or filter()?
I would like to intersect two lists in Python (2.7). I need the result to be iterable:
list1 = [1,2,3,4]
list2 = [3,4,5,6]
result = (3,4) # any kind of iterable
Providing a full iteration will be ...