The python-3.2 tag has no wiki summary.
3
votes
2answers
48 views
Python dictionary.keys() error
I am trying to use the .keys() and instead of getting a list of the keys like
always have in the past. However I get this.
b = { 'video':0, 'music':23 }
k = b.keys()
print( k[0] )
...
3
votes
2answers
99 views
Usage of pickle.dump in Python
I'm trying to learn how to use the pickle module:
import pickle
x = 123
f = open('data.txt','w')
pickle.dump(x,f)
Here's what I get:
Traceback (most recent call last):
File "D:\python\test.py", ...
3
votes
3answers
80 views
Override f[k] += v for a class
I'm implementing a Fenwick tree class in python.
Basically I have an internal list and two methods, get(key) and increase(key, inc), to handle reading and updating this list.
Mapping f[5] to f.get(5) ...
3
votes
4answers
221 views
How to know/change current directory in Python shell?
I am using Python 3.2 on Windows 7. When I open the Python shell, how can I know what the current directory is and how can I change it to another directory where my modules are?
3
votes
1answer
48 views
PyFile_Type replaced by ..?
I'm tyring to compile Yenc for Python 3.2. I noticed that gcc complained about a non-declared function PyString_Type, so I replaced it with its replacement PyBytes_Type as according to the ...
2
votes
2answers
49 views
Python 3.2 strange error with range type in list
r = range(10)
for j in range(maxj):
# get ith number from r...
i = randint(1,m)
n = r[i]
# remove it from r...
r[i:i+1] = []
The traceback I am getting a strange error:
...
2
votes
1answer
154 views
Python: name 'reduce' is not defined
I'm using Python 3.2. Tried this:
xor = lambda x,y: (x+y)%2
l = reduce(xor, [1,2,3,4])
And got the following error:
l = reduce(xor, [1,2,3,4])
NameError: name 'reduce' is not defined
Tried ...
2
votes
2answers
1k views
Uninstall python 3.2 on mac os x 10.6.7
According to the documentation from python.org, python 3.2 install on mac os requires an upgrade to tcl/tk 8.5.9 (for use of IDLE). In my haste, I have done both. Now my friend told me that python 3 ...
1
vote
2answers
51 views
Is there a 'skip-range' technique in FOR-loops in Python?
Let's pretend (since it's true) that I have a Python (3) script that needs to iterate over a 2D array (any length, but each element is just an array of 2 ints, as per the list below).
linCirc = ...
1
vote
1answer
197 views
Issue in build and install python3.2 in mac osx lion
I using Mac OSX Lion and I could easily install python3.2 using DMG installer setup available in python.org site.
But i want to write some python-C functions and create a binary for it.
So for this ...
1
vote
1answer
187 views
Problems with Python 2.6 and 3.2 urlopen Routines on Windows
Previously, in python 2.6, I had made a lot of use of urllib.urlopen to capture
web page content and then later post process the data that I received. Now, those routines, and the new routines I am ...
1
vote
1answer
67 views
Where can I find a documentation or sample code about tkinter for python 3.2?
Or website of sample codes regarding tkinter for python 3.2 will do.
1
vote
1answer
632 views
Python 3.2 extremely slow when compare to Python 3.1.x
I read through Python 3.2 changes and understand that it has made many improvement over 3.1. However, my exact same code with zero modification running on 3.2 is more than 10 times slower than when I ...
0
votes
0answers
7 views
python3 compatibile ssh library
i have gone through several stackoverflow posts on Python3 and SSH, however it does seem to me there is nothing out there yet.
I checked:
paramiko
pexpect
fabric
some custom made scripts
What ...
0
votes
1answer
51 views
Python 3.2.2 custom object comparation fails
I have a python class declared like the following within a module
class Position:
def __init__(self, x, y):
self.x = int(x)
self.y = int(y)
def __str__(self):
return self.toString()
def ...
0
votes
0answers
13 views
Multiple fors in python
I have a python (python3.2) script that searches for points with a property that I want. But it has this ugly part.
for x in range(0,p):
for y in range(0,p):
for z in range(0,p):
for s in ...
0
votes
1answer
94 views
Python - cxfreeze keeps saying file/directory non-existant
I've got some very basic code which works, and I want to turn it into an exe.
Since I'm using Python 3 because it seems so much cleaner than other Python editions, I've not been able to use Py2Exe, ...
0
votes
1answer
62 views
How to build simuPOP on Mac OS X with python3?
I spent a full week trying to find out how to fix this problem, but I can't figure out how to do it. I get the following error:
MacBook-Pro-van-Hakim:Modules MvZB$ tar zxf ...
0
votes
2answers
90 views
Passing io._BufferedReader to c-function
This question is a follow-up to my previous question, where I tried to compile python-yenc for Python3. After being told there wasn't a quick fix, I decided to take up the challange and rewrite it ...
0
votes
1answer
193 views
Python 3 concurrent.futures socket server works with ThreadPoolExecutor but not ProcessPoolExecutor
I am trying to create a simple socket server using the new concurrent.futures classes. I can get it to work fine with ThreadPoolExecutor but it just hangs when I use ProcessPoolExecutor and I can't ...
0
votes
1answer
319 views
mod_wsgi on archlinux with python 3.2
I actually had mod_wsgi working with python3.1, but after updating some software... it no longer works.
I followed these instructions for python3.1 modified slightly for 3.2:
...
-6
votes
3answers
83 views
Python how to: convert set to int [closed]
can some one please explain to me how I could go about converting a set to an int, its homework
when i need to compare the length of the set to the length of a list or something else?
lst = []
...