For issues that are specific to Python 3.2. Use the more generic [python] and [python-3.x] tags where possible.
1
vote
1answer
17 views
python 3.2 global variable not updating when its in a thread
I'm making a program and I got into a problem.
I have a thread running which has a while loop that checks if a global variable is equal to False, if its equal to True then exit the while loop.
The ...
1
vote
0answers
7 views
Can smtplib handle email attachments of an unknown file type for python 3.2.3?
Looks like when using smtplib I need to know the type of file I would like to attach to an email such as MIMEImage, MIMEText, etc. Is there a way to handle attachments when the file type is unknown?
...
0
votes
1answer
25 views
configuring nginx to work with python3.2
I'm having some trouble configuring nginx to work with Python3.2. I'm also struggling to find anything resembling a decent tutorial on the subject. I did however find a decent tutorial on getting ...
0
votes
1answer
79 views
Python function call at beginning of program
I am newer to python and believe there is a simple answer to this but can't seem to figure it out. Is there a way to do a function call at the beginning of this program. As you can see I am running ...
5
votes
1answer
56 views
The difference between bash and python pipes
I have the following three python scripts:
parent1.py
import subprocess, os, sys
relpath = os.path.dirname(sys.argv[0])
path = os.path.abspath(relpath)
child = subprocess.Popen([os.path.join(path, ...
0
votes
2answers
69 views
Using Monte Carlo method to find a specific probability of a certain dice output in Python 3.2
I'm in a statistics class and we are constantly being given "dice problems" with various constrains. This is a probability problem, where I need to evaluate the probability of an event by using the ...
0
votes
1answer
40 views
Determining if a list of numbers is in heap order, Python 3.2
I just discovered heap (in real life and in Python) and now I'm trying to determine if a certain list of random numbers is in heap order.
Problem is I'm not sure myself if I actually understand "heap" ...
0
votes
1answer
80 views
Placing a crossword puzzle into a tkiner in python 3.2
I managed to write code (through a tutorial) that runs for a simple crossword puzzle. I'm pretty new at Python so I mistakenly used some code from 2.7 and some from 3.2 I think I managed to fix ...
0
votes
2answers
39 views
idle-python3.2 not starting: complains of NameError: name 'Tk' is not defined
running linux mint 13
idle-python3.2 did work from the terminal before, now it does not.
Calling idle-python3.2 from the terminal throws the error below BUT I can run Idle by double clicking on the ...
0
votes
1answer
60 views
Puzzle Solver - Determining what variables belong together based on given facts & constraints by calculating probabilities
Before I say anything else - the problem may look lengthy but it's actually just 1 problem in the core, that kind of gets repeated. I'm trying to create a "puzzle solver" that has to do with ...
1
vote
2answers
26 views
Escape string to be valid python expression
My question is simple. Lets assume you have string in python like this Foo '" \ Bar.
What is the correct way to convert it to valid python expression like 'Foo \'" \\ Bar' (so you just simply can ...
3
votes
1answer
72 views
More “pythonic” way of expanding list of lists to one joined list [duplicate]
This is python syntax related question... Is there more elegant and more pythonic way of doing this:
>>> test = [[1,2], [3,4,5], [1,2,3,4,5,6]]
>>> result = []
>>> for i in ...
0
votes
0answers
70 views
python PIL decoder JPEG not available
d = Image._getdecoder(self.mode, d, a, self.decoderconfig)
File "/usr/local/lib/python3.2/dist-packages/Pillow-2.0.0-py3.2-linux-x86_64.egg/PIL/Image.py", line 381, in _getdecoder
raise ...
0
votes
1answer
28 views
Python Idle 3.2 tab glitch
In IDLE using 3.2, whenever I enter a statement in a block and press Enter, the cursor jumps ahead. A LOT. It isn't a big deal, but it's annoying. Does it have to do with my code? Is there a fix?
...
0
votes
0answers
34 views
Special Characters in PILLOW 2.0.0 with Python 3.2
So after a lot of searching a fooling around, I'm stumped here. I'm using PILLOW 2.0.0 on Python 3.2 to generate text. This is working, however I'm running into some issues with the character ...
2
votes
2answers
82 views
Formatting a txt file of equations into the same format and then manipulating them for linear algebra calculations in Python
I'm looking for an universal way of transforming equations in Python 3.2. I've only recently begun playing around with it and stumbled upon some of my old MATLAB homework. I'm able to calculate this ...
0
votes
2answers
24 views
Getting UnicodeDecodeError while accessing csv file
Input file : chars.csv :
4,,x,,2,,9.012,2,,,,
6,,y,,2,,12.01,±4,,,,
7,,z,,2,,14.01,_3,,,,
When I try to parse this file, I get this error even after specifying utf-8 encoding.
>>> ...
1
vote
1answer
52 views
Trouble creating char * object to send to c++/c shared object library
First off I am new to ctypes and did search for an answer to my question. Definitely will appreciate any insight from here.
I have a byte string supplied to me by another tool. It contains what ...
0
votes
1answer
57 views
TypeError: 'int' object is not callable(Pygame)
I am attempting to make a floor that loads at the bottom of the screen for little platformer. I am doing it the this way also so later on it will be easier(I think) to have the floor load only in the ...
-1
votes
1answer
40 views
How to install the Python-RSA 3.1.1 package in Python 3.2? [closed]
So far I've tried these methods to install the package
pip install rsa andpython setup.py install
but it seems like I installed the one for python2.7.
How can I install the one for python3.2? Or ...
0
votes
0answers
43 views
python3 and httplib2 - connection closed by remotehost
So I'm trying to post a xml file via httplib2 and python 3:
http = httplib2.Http()
def upload(self):
response, content = http.request(
self.URL,
'POST',
...
0
votes
0answers
98 views
Updating progressbar using multiprocessing in tkinter/python3.2
I am trying to copy a folder to another location. I would like to have a progressbar being updated regularly. I want to do that by getting size of original folder and then of how much has been copied ...
0
votes
2answers
114 views
Making a .txt file calendar in Python 3.2 WITHOUT using .calendar
I'm trying to write a program that will give me a nice .txt file displaying this year's calendar, however, I don't want to use the calendar function, but datetime.
I want it to have the following ...
-3
votes
3answers
138 views
Python 3.2 - Converting words to lower case & number of palindromes in the list of words that have at least 3 letters
I have a random file of words and some of them are palindromes and some are not. Some of those palindromes are 3 or more letters long. How do I count them? I'm wondering how to make the conditions ...
0
votes
2answers
125 views
python 3.2-using dictionary to assign each letter in alphabet a numeric value&finding the sum of words in a .txt file based on their letter values
in python 3.2 i'm trying to use dictionary to assign each letter in the alphabet a value. the pattern is 'a'=1,'b'=2, 'c'=3…'z'=26. i have a file called words.txt and in this file there is a long ...
1
vote
1answer
53 views
VirtualEnv - Python 3.2 - Package gives ImportError (but not in 2.7)
I'm new to virtualenv, but the error I'm getting doesn't make any sense to me.
When I do pip install MultiString in my Python 2.7 virtualenv, i can then use the package without problems.
If I do the ...
0
votes
1answer
122 views
Python numpy loop index out of bounds error
a1 = np.random.random_sample(10)
a2 = np.random.random_sample(5)
a3 = np.zeros([10])
for i in range(0,9):
a3[i] = ((a2[i]+a2[i+1])/2.) * ((a1[i+1]-a1[i])/2.) * (a1[i]*a2[i])
print(i, ...
2
votes
2answers
163 views
PyEval_InitThreads in Python 3: How/when to call it? (the saga continues ad nauseum)
So, basically there seems to be massive confusion/ambiguity over when exactly PyEval_InitThreads() is supposed to be called, and what accompanying API calls are needed. The official Python ...
0
votes
1answer
40 views
Python 3.2: Can I multiply a tuple in a list without concatenating the individual tuples into one tuple?
I like the simplicity of this list comprehension syntax,
waves = [(frequency, amplitude) * wave_count]
but in this case I don't like that it concatenates the multiplied tuple into one long tuple.
...
-6
votes
1answer
65 views
Syntax error on “ pos = ( int(pos_x x) int(pos_y y) )” [closed]
running python 3.2 why am I getting syntax error on pos = ( int(pos_x + x) int(pos_y + y) )
0
votes
1answer
86 views
How do I change a Gtk3 Entry text color in Python3?
I have a list of Gtk.Entry() in my application, and I would like to change the color of the text of some of them.
I tried the following :
#!/usr/bin/python3
# Filename: mywindow.py
from ...
1
vote
3answers
67 views
Optimization by using lists instead of dicts in Python
I have some Python code that is far, far slower than it really ought to be.
#Generate planets
for t in range(stars*3): #There are 3 planets for every star, but not every star will have 3 planets
...
1
vote
2answers
100 views
SQLAlchemy+pymysql Error: sqlalchemy.util.queue.Empty
Trying to run Python3.2, SQLAlchemy0.8 and MySQL5.2 on Ubuntu using Eclispse but I keep getting the error below. Am using pymysql (pymysql3 actually) engine.
module monitor
from sqlalchemy import ...
0
votes
1answer
356 views
Python3.2: Installing MySQL-python fails with error “No module named ConfigParser”
I want to use SQLAlchemy with MySQL database. I've created the Engine and tried to connect but I get an error as follows.
from sqlalchemy import create_engine
from sqlalchemy.ext.declarative import ...
0
votes
0answers
80 views
Python 3.2 How do I change the color of a pixel & multiply a pixel's value?
I am not using PIL, just a regular .ppm image. I'm trying to change red pixels so that they turn black, and then multiplying green and blue pixels by 20 to get an image. The places I have looked so ...
2
votes
2answers
143 views
How do I gracefully include Python 3.3 from None exception syntax in a Python 3.2 program?
I'm trying to re-raise an exception to give the user better information about the actual error. Python 3.3 includes PEP 409. It adds the raise NewException from None syntax to suppress the context of ...
7
votes
3answers
296 views
Optimizing product assembly / disassembly
I have a store that contains items. Each item is either a component (which is atomal) or a product which consists of various components (but never of 2 or more of the same components).
Now, when I ...
0
votes
0answers
76 views
Python 3 is_alive call showing the wrong result
I am trying to use is_alive() to test one thread from another in Python 3.2.
If i use thread1().is_alive() in thread2 i get false instead of true whether thread1 is running or not.
I get the same ...
0
votes
0answers
46 views
sqlalchemy mysterious NameError
The Situation
I have a pretty involved database and its models are split up into multiple files because there are loads of them.
foo.py
from ...models.capture_models import CaptureInstance
from ...
0
votes
1answer
130 views
Python multithreading - closing thread in Blender
I have a little problem, with a multithreaded python script in blender game engine.
It works alright, but when I stop the game, It raises some exceptions and sometimes crashes.
from bge import logic
...
0
votes
0answers
52 views
MagicCore not found with PythonMagic py-3.2 binaries
I have been trying to use PythonMagick library on a py-3.2 win32 platform.
I downloaded the binaries proposed by @cgohlke on the Unofficial Windows Binaries for Python Extension Packages.
So far, ...
2
votes
1answer
131 views
eps cmyk color matplotlib output
I need to output my plots in EPS with the CMYK color space. Unfortunately this particular format is requested by the journal I am submitting my work to!
This discussion was the only one I could find ...
0
votes
1answer
49 views
Underscores in method names [silly mistake]
EDIT: My mistake - there was another method name (with the underscore) at another place which had only a pass in its body. Stupid me. Please close.
I have a class with two methods, each returning a ...
1
vote
1answer
73 views
Pulling valid data from bytestring in Python 3
Given the following bytestring, how can I remove any characters matching \xFF, and create a list object from what's left (by splitting on removed areas)?
...
0
votes
0answers
72 views
Queue python3 abstract data types
How do I return the first item inserted in a queue without actually removing/poping the item?
it is the "peek" function Also how do I change the whole queue into a string like the function "str"
It ...
0
votes
1answer
29 views
Stacks python3 abstract data types
Ok so I am trying to input "Hello World!" and I want the output to be "dlroW olleH"
My code prints the opposite one by one.
How do I fix this?
class Stack:
def __init__(self):
...
1
vote
3answers
203 views
string as bytes python3
let say i got string(that is supposed to be a bytes):
"b'YzJGNVltYzJGNVltOTBlbk5oZVdKdmRIcHpZWGxpYjNSNmMyRjVZbTkwZW5OaGVXSnZkSHB6WVhsaWIzUjZjMkY1WW05MGVnOTBlblJsYzNRPXNheWJvdHo='"
and i want to ...
1
vote
2answers
204 views
Finding a process ID given a socket and inode in Python 3
/proc/net/tcp gives me a local address, port, and inode number for a socket (0.0.0.0:5432 and 9289, for example).
I'd like to find the PID for a specific process, given the above information.
It's ...
1
vote
1answer
64 views
Caching and memory usage
I have a lot of classes that all do the same: They receive an identifier (the PK in the DB) during construction and then are loaded from the DB.
I am trying to cache the instances of these classes in ...
1
vote
2answers
58 views
Python sometimes does not pass class instance as first parameter - understanding __new__
I have a class with a function like this:
def foo(self):
do_stuff()
And I call it like this:
instance.foo()
and I get this error:
TypeError: foo() takes exactly 1 argument (0 given)
but ...

