Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.

learn more… | top users | synonyms (4)

1
vote
0answers
137 views

Higher order functions: automatic generation vs manual definition

I'm trying to delay evaluation for a bit, and so I prefer to work with functions as long as possible. I have class Function which defines composition and pointwise arithmetics for functions: from ...
1
vote
0answers
113 views

urllib2 misbehaving with dynamically loaded content

Some Code headers = {} headers['user-agent'] = 'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:16.0) Gecko/20100101 Firefox/16.0' headers['Accept'] = ...
1
vote
0answers
113 views

python3 recursion animation

I need to animate a similar animation in quickdraw and I'm told to use recursion. I'm having a hard time with the orbits and this is the code I have for orbiting circle but I have no idea how to use ...
1
vote
0answers
226 views

Reading ID3 Tags in Python 3

I'm stuck. I'm trying to find a way to read ID3 tags in an MP3 & FLAC files in Python 3. Everywhere I turn, the answer is about some library or module that only works in Python 2, including ...
1
vote
0answers
118 views

Scipy not working with python 3 but does with 2.6(default)

I have installed Scipy by build and install from the terminal. But I get the following error when I try to execute the following simple code: from scipy.stats.mstats_basic import gmean ...
1
vote
0answers
100 views

Python3 method call returns None despite an explicit return of a new class instance

It's my first post so please go easy on me. Not too easy, of course ;) Anyway, I'm using Python 3.2.3 to write a text adventure game. There is a class Labyrinth that holds a collection of Location ...
1
vote
0answers
77 views

Virtualenv and libpython

I'm running arch, and on a project I had set up previously I used virtualenv to set up a little python sandbox. At this point in time the default python version on my box was 3.2 It has since been ...
1
vote
0answers
83 views

Can I use Tkinter (or some other GUI library) to select files and folders at the same time?

I'm writing a simple file transfer program in Python using Tkinter, and I want to be able to select files and folders at the same time. As far as I can tell, I can only do one or the other, using: ...
1
vote
0answers
246 views

Reading binary data from a file with a given structure

I'm stuck here with the problem of reading a binary data from a file (*.ADB) which is an output of a seismic station. The primary idea here is to read the data from *.ADB and to save it as unpacked ...
1
vote
0answers
511 views

What is the equivalent of Python's file_object.readline() in the GNU readline module?

I've looked through the (Python 3.3) documentation for the GNU-based readline module, and I can see how to do almost everything I want to do except read a line. I can't tell how to use the readline ...
1
vote
0answers
65 views

Error to compile file PyObject (Gtk ) with Pydev

I'm build application with pyobject (gtk) in Pydev , but i'm try to create a window the following way: Class Ventana from gi.overrides import Gtk class Ventana( Gtk.Window ): def __init__( ...
1
vote
0answers
89 views

python -m unittest2 discover not working

I'm using the excellent Tox tool to test my code. Here is my tox.ini: [tox] envlist = py26,py27,py31,py32,py33 [testenv] deps = ParamUnittest commands = python -m unittest discover tests ...
1
vote
0answers
247 views

Cannot import Skype4Py in Python

I'm using Skype4Py with Python 3.2.3 on windows. There was an error while trying to import Skype4Py package and I did the following to figure out what it was: import sys try: import Skype4Py ...
1
vote
0answers
195 views

Simple Python HTTP server with caching proxy for some routes

I like to develop a simple HTTP in Python3 which basically should support 3 different behaviors: Load local files by their relative path to the root folder e.g. myhost/static/index.html Mirror ...
1
vote
0answers
92 views

How to add a path for Python 3.1 on a mac alongside Python 2.7?

I'm a seventeen year old boy trying to learn Python. I use the CBT Nuggets as my tutorial, however I've come across a problem. I just switched to a macintosh and I don't know how to run python 3.1 ...
1
vote
0answers
48 views

how to format output when using http.client debug?

this is my code: #coding=UTF-8 import urllib3 import http.client http.client.HTTPConnection.debuglevel = 1 API_URL = 'http://www.nyaa.eu/' http_pool = urllib3.connection_from_url(API_URL) r = ...
1
vote
0answers
58 views

How do I selectively run cpython's regression tests?

How do I run CPython3.3's own regression tests? python3.3 -m test.regrtest packaging.tests.test_command_install_data raises ImportError: No module named 'test.packaging'
1
vote
0answers
108 views

Python 3.2: PyInitialize() resets width of wchar_t

I'm a Python newbie having problems with embedding Python 3.2 in a piece of C++ code. Here's an example. The code looks like this: std::cout << "Hello world" << std::endl; std::wcout ...
1
vote
0answers
66 views

Using Python Tracing To Signal To Higher-Level Methods

I'm building a server where I'd like low level functions signal to higher level functions by calling them again. For instance: def bar(): print('hello') #run blah() again def foo(): ...
1
vote
0answers
232 views

Blender - Python: How can I run a script after every rendered frame?

I don't know the right keywords to search and I'm just beginning on Blender 2.61 via Python. So, how to execute a function at every frame on Blender? If you may wonder, I want to change the ...
1
vote
0answers
714 views

installation of pyqt4 fails using python3

I am facing the same problem as here: Installing PyQt 4.9 on CentOS 6.0 Fails . I am trying to install (make) pyqt v4.9 using python v3.1 on a linux machine running Ubuntu 10.04. From the ...
1
vote
0answers
119 views

Issue with SFCB, the python-binding layer and python providers in ESX 4.0

We are writing SFCB providers in python, Since SFCB talks to only C++ providers we need to have an intermediate layer(cmpi-bindings, a python extension module) which can talk to SFCB and start the ...
1
vote
0answers
308 views

Media Module for Python 3.2

I'm taking an introductory computer science course this semester and my professor has us using Practical Programming: An Introduction to Computer Science Using Python for our textbook. I'm working ...
1
vote
0answers
193 views

PhotoImage.zoom() error

I'm currently working on an application that reads intensities from .txt files and then converts the intensities to RGB before mapping them an image. Right now, I'm doing this by creating an empty ...
1
vote
0answers
235 views

how to multiprocess large text files in python?

I tried to digest lines of a DictReader object after I read in a 60 MB csv file. I asked the question here: how to chunk a csv (dict)reader object in python 3.2?. (Code repated below.) However, now I ...
1
vote
0answers
163 views

how to streamline (or parallelize with multiprocessing) some python 3.2 code with many loops?

I tried to educate myself about optimizing python and potentially parallelizing my problem. The links I used are listed at my question posted over at ...
1
vote
0answers
383 views

How do I listen to mouse position in Python

I know how to get the mouse position in Python with this code calling display. data = display.Display().screen().root.query_pointer()._data x = data["root_x"] y = data["root_y"] but I have an ...
1
vote
0answers
229 views

How to mock objects with constructors in Python3?

I'm new to Python (I'm from Java) and I'm facing an issue in using mocks in Python3.2. Here is the code: import gzip class MyClass: _content = None _gzipfile = gzip.GzipFile def ...
1
vote
0answers
355 views

Simple Json decoding with SimpleJSON - Python

Ive just started learning python and Im having a go at using a google api. But I hit a brick wall trying to parse the JSON with simplejson. How do I go about pulling single values (ie product or ...
1
vote
0answers
213 views

thread posting script, invision powerboard

So there's two things that we do on a certain site, which is download new files and post files, and they're easily definable (and tedious), so I've been trying to script it. So anyways, I have the ...
0
votes
0answers
9 views

Writing a program to read postfix expressions

Assume a machine that has a single register and six instructions. LD A-------which places the operand A into the register ST A-------which places the contents of the register into the variable A AD ...
0
votes
0answers
11 views

Sending python logger info or messages to client through UDP or TCP connection

i want to send the logger info/messages of a python script to vb.net application via UDP or TCP. can anyone help me finding the right way to do so ? Here is my work roughly done : Its just log the ...
0
votes
0answers
13 views

access to Sybase ASE 15.5 from Python3 64bit

I need to access to Sybase ASE 15.5 from Python3 64bit. I have the sybclient64 on my PC. I tried with python-sybase-0.40, but the installer does not work. Please, could you tell me what libraries to ...
0
votes
0answers
24 views

Access factory function from nested class

What I have is: • A factory function, with a nested class (so that it is more difficult to directly instantiate the class) • Inside the class I have an update method which should call the factory ...
0
votes
0answers
32 views

numpy genfromtxt issues in Python3

I'm trying to use genfromtxt with Python3 to read a simple csv file containing strings and numbers. For example, something like (hereinafter "test.csv"): 1,a 2,b 3,c with Python2, the following ...
0
votes
0answers
34 views

Python3 can not find module xmlrpc from unittests

I am working on a python project with 2 other people, but I can't run our tests. When I run the tests using python3 -m unittest I get this output Traceback (most recent call last): Traceback (most ...
0
votes
0answers
13 views

python win32com FileSystemObject failed on getting huge folder

My test code is: #!/usr/bin/env python import win32com.client def GetFolderSizeQuick(target_folder): fso = win32com.client.Dispatch("Scripting.FileSystemObject") fobj = ...
0
votes
0answers
21 views

Cannot installing Pylint on Win 7 machine running Python 3.3.1

setup.py install fails with the following stack trace. Any ideas? C:\Python33\libs\pylint-0.1.2>python setup.py install running install running build Traceback (most recent call last): File ...
0
votes
0answers
33 views

Py_Initialize: Unable to get the locale encoding in OpenSuse 12.3

I have downloaded Python3.3 and after unzipping it I issued ./configure, make and make altinstall. When I issued python3.3, the following message was shown: Fatal Python error: Py_Initialize: ...
0
votes
0answers
24 views

Tree-based diff (for HTML/XML) in Python 3x

I am trying to find a library that will allow to perform "tree-based" diffs, or diffs that are aware of DOM structures. I have two lists with HTML content that I want to perform differential analysis ...
0
votes
0answers
44 views

Diagonal lines of squares in grids

I have a python grid class in which I am trying to create a method to get the diagonal line of tiles that a certain tile belongs to. I have succeeded in doing this for going down from left to right in ...
0
votes
0answers
22 views

Get Python release version for ARM using Visual Studio 2012

I'm able to compile a Python 2.6.8 version for ARM systems using VS2012, but I get everything (all compiled files and exe files) on the same directory (for me: ARM/Release). My project: Get the ...
0
votes
0answers
17 views

Matplotlib: contourf3d_demo2 example doesn't work with python3.3

The current docs for the matplotlib mplot3d contourf function contain two examples: mplot3d tutorial - Matplotlib 1.2.1 documentation One of them, contourf3d_demo2.py works with python v2.7.3, but ...
0
votes
0answers
23 views

Google API SSL error using customsearch from Python3

I am unable to query google from Python3 client in Windows. Here is the script import urllib.request, urllib.parse, urllib.error, re, os, sys import json searchterm="hello" prefix = ...
0
votes
0answers
13 views

Decode error in python3 in Debian (UnicodeEncodeError: 'ascii' codec can't encode characters in position)

I have problem with decode in Python3 script. I know that this problem has been discused but solutions I have found don't help. Problem: I have xml in 'Unicode string' type (get from doc.toxml()) and ...
0
votes
0answers
22 views

python and E01 files

Are there any modules for python for accessing the content of Expert Witness/EnCase E01 file? E01 file is a forensic image of a harddrive, thumdrive etc. They are created with the help of programs ...
0
votes
0answers
18 views

How can I implement QThread into my python code

I have looked up the references and can not seem to get it to work correctly. Have been stuck in the same spot for 2 weeks. I would like to add threading to my code so I can dynamically update a ...
0
votes
0answers
35 views

cx_freeze can't find Module ElementC14N for my project with xml.etree.ElementTree

I am using xml.etree.ElementTree in my project and it seems cx_freeze has some troubles with it. Other modules (from python and my own) are included correctly - the application does even start from ...
0
votes
0answers
30 views

Choosing Python3.3 interpreter in Eclipse problems

I am new to Eclipse & PyDev (on Ubuntu 13.04) and want to try Python3.3 programming. But I cannot choose python3.3 iterpreter, - I try to choose it in usr\lib\python3.3 , but: - when I try to ...
0
votes
0answers
47 views

How to multiply row of a 2D array with column of another 2D array in python3.3 without numpy?

NO_OF_ROWS_A=int(input("Enter the no. of rows in A: ")) NO_OF_COLUMNS_A=int(input("Enter the no. of columns in A: ")) NO_OF_ROWS_B=int(input("Enter the no. of rows in B : ")) ...

1 2 3 4 5 17