In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
8
votes
1answer
130 views
python 2.7 presence in a dictionary
I want to test a presence of a key in a dictionary as 'if key is not in dictionary: do something'
I have already done this already multiple times, but this time it behaves strangely.
particularly:
...
8
votes
1answer
84 views
What's going on with this python syntax? (c == c in s)
Someone just showed me this weird example of python syntax. Why is [4] working?
I would have expected it to evaluate to either [5] or [6], neither of which works. Is there some premature ...
8
votes
3answers
1k 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 ...
8
votes
1answer
96 views
capturing dis.dis results
Is there any way to dis.dis() output without redirecting sys.stdout? I have tried:
out=str(dis.dis())
and
out=""""""
out+=str(dis.dis())
However I soon found out that it returns a None type. Is ...
8
votes
1answer
2k views
pydev debugger: unable to find real location for python 2.7 after OS 10.8 upgrade
I just upgraded to OS X 10.8 Mountain Lion and having troubles understanding how the pydev debugger should work on Aptana 3.0.
In Aptana's preferences I have the python interpreter setup with a ...
8
votes
1answer
301 views
Length cutting through file handling
I have 2 codes which did the same work as which i am asking , but still i didn't get any useful or better code for my data set to make it useful for me , First let me clear what i am doing .
I have 2 ...
8
votes
1answer
143 views
Python throws TypeError on issubclass() when issubclass() is never called
I have a piece of code that runs perfectly most of the time, but every once in awhile I get this error in the traceback:
File "/path/to/somefile.py", line 272, in somefile
sm = -0.5 * (wv[0]**2. ...
8
votes
2answers
597 views
Reliable way to execute thousands of independent transaction?
I am reaching a bottleneck on my application and having a tough time finding a solution around it. A little background:
My app pings an API to gather information on hundreds of thousands of items ...
7
votes
2answers
11k views
easy_install lxml on Python 2.7 on Windows
I'm using python 2.7 on Windows. How come the following error occurs when I try to install [lxml][1] using [setuptools][2]'s easy_install?
C:\>easy_install lxml
Searching for lxml
Reading ...
7
votes
4answers
4k views
selectively escape percent (%) in python
I have read the python documentation related sections, searched everywhere I could think, and asked my colleagues and we can't come up with the direct solution just work arounds.
test = "have it ...
7
votes
7answers
5k 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 = ...
7
votes
2answers
3k 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 ...
7
votes
4answers
124 views
How to determined if a 2 dimensional list contain a value?
I have a list like following
mylist = [('value1', 'value2', 'value3'), ('secval1', 'secval2', 'secval3')]
how do I see if the list contains 'value2'?
7
votes
7answers
434 views
Searching and marking paired patterns on a line
I need to search for and mark patterns which are split somewhere on a line. Here is a shortened list of sample patterns which are placed in a separate file, e.g.:
CAT,TREE
LION,FOREST
OWL,WATERFALL
...
7
votes
2answers
1k views
What is the “soft private memory limit” in GAE?
A user of my application attempted to send a file as an email attachment using my application. However, doing so raised the following exception which I'm having trouble deciphering
2012-02-17 ...
7
votes
3answers
1k views
GAE python threads not executing in parallel
I am trying to create a simple web app using Python on GAE. The app needs to spawn some threads per request received. For this I am using python's threading library. I spawn all the threads and then ...
7
votes
6answers
641 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 ...
7
votes
1answer
17k views
Installing scipy for python 2.7
I cannot seem to get SciPy working for Python 2.7 on a 32 bit Windows XP platform. I'd rather not build my own copy. Does anyone know where I could find a installer for it? I tried this site, but it ...
7
votes
2answers
149 views
python - why is read-only property writable?
I am trying to define a class with a read-only property in a Python; I followed Python documentation and came up with the following code:
#!/usr/bin/python
class Test:
def __init__(self, ...
7
votes
5answers
145 views
what happen b=a[:] in python?
>>>a=[999999,2,3]
>>>b=[999999,2,3]
>>>print(a[0] is b[0])
False#because it works for numbers -5 through 256
>>>a=[1,2,3]
>>>b=a[:]
...
7
votes
3answers
3k 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. ...
7
votes
2answers
6k views
AttributeError(“'str' object has no attribute 'read'”)
Something seems to be going wrong with the data types here, but I don't know how to fix it. Google only gives my rubbish which isn't even remotely connected to my problem.
Please assist.
...
7
votes
3answers
2k 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 ...
7
votes
2answers
111 views
Python variable naming/binding confusion
I am relatively new to Python development, and in reading through the language documentation, I came across a line that read:
It is illegal to unbind a name that is referenced by an enclosing ...
7
votes
4answers
641 views
List of numbers whose squares are the sum of two squares
I've just started learning Python and have started doing some problems just to help buid my skills however I am pretty stuck on this question.
Make a list containing all positive integers up to 1000 ...
7
votes
3answers
172 views
Picking up items progressivly as soon as a queue is available
I am looking for a solid implementation to allow me to progressively work through a list of items using Queue.
The idea is that I want to use a set number of workers that willgo through a list of 20+ ...
7
votes
2answers
769 views
Weak References in python
I have been trying to understand how python weak reference list's/dictionary's work and have been reading the documentation for it as well, however i cannot seem to figure out how they work and what ...
7
votes
1answer
216 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
1answer
2k views
Numpy->Cython conversion: Compile error:Cannot convert 'npy_intp *' to Python object
I have the following code that is to be propperly converted to cython:
from numpy import *
## returns winning players or [] if undecided.
def score(board):
scores = []
checked = ...
7
votes
1answer
65 views
Python extremely puzzling regex unicode behaviour
I use a tokenizer to split french sentences into words and had problems with words containing the french character â.
I tried to isolate the problem and it eventually boiled down to this simple fact:
...
7
votes
2answers
210 views
Python relative imports for the billionth time
I've been here
http://www.python.org/dev/peps/pep-0328/
http://docs.python.org/2/tutorial/modules.html#packages
Python packages: relative imports
python relative import example code does not work
...
7
votes
3answers
2k views
pydev breakpoints not working
I am working on a project using python 2.7.2, sqlalchemy 0.7, unittest, eclipse 3.7.2 and pydev 2.4. I am setting breakpoints in python files (unit test files), but they are completely ignored ...
7
votes
4answers
7k 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 ...
7
votes
2answers
164 views
Equivalent Nested Loop Structure with Itertools
Python's succint syntax through its batteries allows verbose code line to be expressed in readable one liners. Consider the following examples
====================================================|
...
7
votes
3answers
352 views
Google App Engine Instances keep quickly shutting down
So I've been using app engine for quite some time now with no issues. I'm aware that if the app hasn't been hit by a visitor for a while then the instance will shut down, and the first visitor to hit ...
7
votes
2answers
788 views
correct usage of scipy.optimize.fmin_bfgs
I am playing around with logistic regression in Python. I have implemented a version where the minimization of the cost function is done via gradient descent, and now I'd like to use the BFGS ...
6
votes
4answers
138 views
How to get Python division by -0.0 and 0.0 to result in -Inf and Inf, respectively?
I have a situation where it is reasonable to have a division by 0.0 or by -0.0 where I would expect to see +Inf and -Inf, respectively, as results. It seems that Python enjoys throwing a
...
6
votes
7answers
6k views
Ordered Sets Python 2.7
I have a list that I'm attempting to remove duplicate items from. I'm using python 2.7.1 so I can simply use the set() function. However, this reorders my list. Which for my particular case is ...
6
votes
2answers
108 views
Do python “in” statements automatically return as true
I wrote this bit of unnecessarily complicated code on my way to learning about how to use the in statement to make if statements work better. I have two questions following the code snippet.
answer ...
6
votes
1answer
2k views
How do I make a fixed size formatted string in python?
I want to create a formatted string with fixed size with fixed position between fields. An example explains better, here there are clearly 3 distinct fields and the string is a fixed size:
XXX ...
6
votes
2answers
946 views
How to pass extra arguments to python decorator?
I have a decorator like below
def myDecorator(test_func):
return callSomeWrapper(test_func)
def callSomeWrapper(test_func):
return test_func
@myDecorator
def someFunc():
print 'hello'
I ...
6
votes
4answers
6k views
python : scipy install on ubuntu
I'm currently following this tutorial to install scipy on Ubuntu 12.04 (I can't use apt-get install because I need a recent version) : http://www.scipy.org/Installing_SciPy/Linux
However I get errors ...
6
votes
2answers
6k views
Using python PIL to turn a RGB image into a pure black and white image
I'm using the Python Imaging Library for some very simple image manipulation, however I'm having trouble converting a greyscale image to a monochrome (black and white) image. If I save after changing ...
6
votes
2answers
121 views
file.tell() inconsistency
Does anybody happen to know why when you iterate over a file this way:
Input:
f = open('test.txt', 'r')
for line in f:
print "f.tell(): ",f.tell()
Output:
f.tell(): 8192
f.tell(): 8192
...
6
votes
2answers
74 views
Why does help(42) work but neither help(“”) nor help(“x”)? [duplicate]
Possible Duplicate:
Inconsistency in python help(‘string’) versus help(list)?
In the interactive shell of Python, if I type help(42) I get all the information about int objects. If I type ...
6
votes
3answers
749 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
3answers
168 views
How to eliminate the ☎ unicode?
During web scraping and after getting rid of all html tags, I got the black telephone character \u260e in unicode (☎). But unlike this response I do want to get rid of it too.
I used the following ...
6
votes
2answers
239 views
Is there a way to make collections.Counter (Python2.7) aware that its input list is sorted?
The Problem
I've been playing around with different ways (in Python 2.7) to extract a list of (word, frequency) tuples from a corpus, or list of strings, and comparing their efficiency. As far as I ...
6
votes
4answers
3k views
For a Python dictionary, does iterkeys offer any advantages over viewkeys?
In Python 2.7, dictionaries have both an iterkeys method and a viewkeys method (and similar pairs for values and items), giving two different ways to lazily iterate over the keys of the dictionary. ...
6
votes
3answers
124 views
Python lambda function to calculate factorial of a number
I have just started learning python. I came across lambda functions. On one of the problems, the author asked to write a one liner lambda function for factorial of a number.
This is the solution ...
