Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
3
votes
1answer
155 views
Thread-safe warnings in Python
I am trying to find a good way to log a warning message but appending to it information that is only known by the caller of the function.
I think it will be clear with an example.
# log method as ...
3
votes
2answers
544 views
Getting a more useful 'logging' module error output in python
I am using the logger module of python (python version 3.x, but it should not matter) and I noticed that an error in a format string is reported as such:
Traceback (most recent call last):
File ...
3
votes
1answer
477 views
Decorating method (class methods overloading)
Inspired by Muhammad Alkarouri answer in What are good uses for Python3's "Function Annotations" , I want to do this multimethod for methods, not regular functions. However, when I do ...
3
votes
1answer
95 views
python _2or3 module?
I am writing a module to let me write code in python 3, but still run it in 2. It looks surprisingly easy actually... anything else I should add? From my (limited) flailing on the interactive ...
3
votes
2answers
2k views
recv/send on raw socket before SSL wrap(), Python
I'm wondering if I can recv/send data on a raw socket before wrapping it - I've looked through the documentation and searched for it but couldn't find anything specific. What I basically want to do:
...
3
votes
3answers
215 views
How to write a Python 2.6+ script that gracefully fails with older Python?
I'm using the new print from Python 3.x and I observed that the following code does not compile due to the end=' '.
from __future__ import print_function
import sys
if sys.hexversion < ...
3
votes
1answer
769 views
How does exec work with locals?
I thought this would print 3, but it prints 1:
def f():
a = 1
exec("a = 3")
print(a)
2
votes
1answer
141 views
How to find out number/name of unicode character in Python?
In Python:
>>>"\N{BLACK SPADE SUIT}"
>>>'♠'
>>>"\u2660"
>>>'♠'
Now, let's say I have a character which I don't know the name or number for. Is there a Python ...
2
votes
1answer
562 views
Using HTMLParser in Python 3.2
My first post here. I'm grateful for all I've found so far, but have become utterly stumped with failed Google-Fu on a project of mine.
In Python, I have been using HTMLParser to scrapping data from ...
2
votes
2answers
1k views
Unescaping escaped characters in a string using Python 3.2
Say I have a string in Python 3.2 like this:
'\n'
When I print() it to the console, it shows as a new line, obviously. What I want is to be able to print it literally as a backslash followed by an ...
2
votes
1answer
151 views
Where is nonlocals()?
How do I obtain the non-local variables for the current scope? The functions vars, locals, and globals exist, but is there a function to get the nonlocals?
Why aren't the nonlocals listed when ...
2
votes
5answers
3k views
python subprocess output to list or file
I want to run the following bash command in Python 3:
ls -l
I know that I can do the following:
from subprocess import call
call(['ls', '-l'])
How do I save this output to a file, or put it into ...
2
votes
1answer
236 views
python numpy MKL ERROR
I am running ActiveState Python 3.2, and getting this cryptic error:
D:\code>python
ActivePython 3.2.1.2 (ActiveState Software Inc.) based on
Python 3.2.1 (default, Jul 18 2011, 14:31:09) [MSC ...
2
votes
2answers
248 views
Are there any reasons not to mix Multiprocessing and Threading module in Python
I am considering using Python to implement a program, which requires extensive multi-threading. Another requirement is that it will run on desktops, so having many processes, will make the application ...
2
votes
4answers
776 views
Where can I find source code for itertools.combinations() function
I'm a first year university student. I'm trying to find a way to write a combination function.
Can some one please tell me where can I find it. Thanks!
2
votes
1answer
711 views
Dynamic imports + relative imports in Python 3
I have a Python 3 project where I'm dynamically importing modules from disk, using imp.load_module. But, I've run into an problem where relative imports fail, when the relative import occurs within a ...
2
votes
5answers
4k views
Regex to match words and those with an apostrophe
Update: As per comments regarding the ambiguity of my question, I've increased the detail in the question.
(Terminology: by words I am refering to any succession of alphanumerical characters.)
I'm ...
2
votes
1answer
2k views
How do I make these relative imports work in Python 3?
I have a directory structure that looks like this:
project/
__init__.py
foo/
__init.py__
first.py
second.py
third.py
plum.py
...
2
votes
2answers
300 views
Py3k memory conservation by returning iterators rather than lists
Many methods that used to return lists in Python 2.x now seem to return iterators in Py3k
Are iterators also generator expressions? Lazy evaluation?
Thus, with this the memory footprint of python is ...
1
vote
3answers
78 views
Replacing C++ STL output iterator with a Python generator
Python doesn't have a builtin equivalent of OutputIterator; in particular, builtin or standard library containers do not support any generic interface that allows client code to send data to them ...
1
vote
2answers
379 views
Installing python modules for specific version on linux (pySide)
So, to keep it simple. Ubuntu 12.10 has python 3.2 pre installed and it is linked to "python3". I downloaded python 3.3 and it's command is "python3.3". However, I downloaded pySide for python3 from ...
1
vote
5answers
92 views
Python “is” operator?
The "is" operator does not match the values of the variables, but the instances themselves. What does it really mean? I declared two variables named x and y assigning the same values in both variables ...
1
vote
2answers
1k views
installing IPython with two versions of Python (Windows)
Is it possible to have IPython (0.12) installed on the same
system with two different versions of Python (v 2.7 and 3.2)? Currently I have both versions of Python running happily on my system.
I am ...
1
vote
1answer
193 views
Python 3 traceback fails when no exception is active
I noticed that in Python2 when I try to dump the exception stack trace, but there's no active exception, it prints None:
Python 2.7.2+ (default, Oct 4 2011, 20:06:09)
>>> import traceback
...
1
vote
1answer
419 views
Virtualenvwrapper alternative for python 3
I just wanted to setup a small development environment with Python 3.
I had no problems installing pip and virtualenv, however virtualenvwrapper does not seem to support Python 3 yet (as it states on ...
1
vote
1answer
285 views
Calculating with a SVG elipitical arc?
I'm working on a custom pyQt SVG renderer and need help. This is purely mathematical so you won't need an API.
To calculate a SVG elliptical arc you need two radii rx and ry; the rotation of the ...
1
vote
3answers
159 views
python: is it possible to require that arguments to the functions are all keyword?
To avoid the obvious bugs, I'd like to prevent the use of positional arguments with some functions. Is there any way to achieve that?
1
vote
5answers
2k views
List of all imports in python 3
How to find out list of all available imports in python 3 via program? I tried this at first, but couldn't understand what it returned
import sys
sys.modules
I think this isn't the way, ...
1
vote
1answer
1k views
Python 3 CGI: how to output raw bytes
I decided to use Python 3 for making my website, but I encountered a problem with Unicode output.
It seems like plain print(html) #html is astr should be working, but it's not. I get ...
1
vote
2answers
246 views
Python 3.1- Grid Simulation Conceptual issue
The goal is to treat a 1D array as a 2D grid. A second 1D array gives a list of values that need to be changed in the grid, and a third array indicates by how much.
The catch is that the values ...
1
vote
3answers
3k views
Concatenation Operator + or ,
var1 = 'abc'
var2 = 'xyz'
print('literal' + var1 + var2) # literalabcxyz
print('literal', var1, var2) # literal abc xyz
... except for automatic spaces with ',' whats the difference between the ...
0
votes
1answer
75 views
sublime text 3 use python 3.3 as compiler
Just purchased sublime 3. I'm wondering how I can compile in python 3 and not in python 2.
When I execute
import sys
print(sys.version)
I receive
"2.7.3 |EPD_free 7.3-2 (32-bit)| (default, Apr ...
0
votes
1answer
63 views
Python pickling error trying to pickle pygame Event object
I am trying to pickle a pygame.event.Event object:
eventObj= pygame.event.get()[0]
data= pickle.dumps(eventObj)
but I get this error:
_pickle.PicklingError: Can't pickle <class 'Event'>: ...
0
votes
1answer
1k views
Python 3.2 tkinter create a results frame to display output
I currently have a working menu test for my restaurant that reads input received by checkbuttons, compares them to correct answers and then displays either a good job messagebox or a keep working ...
0
votes
1answer
553 views
wrapping a text file so that each line contain a maximum of 80 characters
is there a better way to solve this problem, preferably not through a module.
question is :
Text Processing. You are tired of seeing lines on your e-mail wrap
because people type lines that ...
0
votes
2answers
353 views
view partitions in Linux using python3.x
recently I just started to use python3 and realised that there alot of changes made from python2.6. I want to know is there anyway to format the view of the hard disks available in a linux system by ...
0
votes
3answers
2k views
Subprocess module fails to run command
I'm trying to execute Google's cpplint.py on a group of my files and collect the results to one log file. However, I have not managed to beat the subprocess module. My current code is here:
import ...
0
votes
1answer
194 views
how come I have more threads than processes I asked for my pool in py3k multiprocessing under Linux?
I am trying to parallelize some work, which runs on my mac (Pyton 3.2.2 under Mac OS 10.7) but gives the following error on a Linux cluster I run it where I got 4 cores and access Python 3.2. The ...
0
votes
1answer
2k views
Split text into sentences
I wish to split text into sentences. Can anyone help me?
I also need to handle abbreviations. However my plan is to replace these at an earlier stage. Mr. -> Mister
import re
import unittest
...
0
votes
1answer
2k views
Converting from utf-16 to utf-8 in Python 3
I'm programming in Python 3 and I'm having a small problem which I can't find any reference to it on the net.
As far as I understand the default string in is utf-16, but I must work with utf-8, I ...
0
votes
3answers
145 views
Is there any way to affect locals at runtime?
I actually want to create a new local. I know it sounds dubious, but I think I have a nice use case for this. Essentially my problem is that this code throws "NameError: global name 'eggs' is not ...
14
votes
2answers
11k views
Python 3.0 urllib.parse error “Type str doesn't support the buffer API”
File "/usr/local/lib/python3.0/cgi.py", line 477, in __init__
self.read_urlencoded()
File "/usr/local/lib/python3.0/cgi.py", line 577, in read_urlencoded
self.strict_parsing):
File ...
13
votes
2answers
1k views
Multiple keys per value
Is it possible to assign multiple keys per value in a Python dictionary. One possible solution is to assign value to each key:
dict = {'k1':'v1', 'k2':'v1', 'k3':'v1', 'k4':'v2'}
but this is not ...
9
votes
5answers
4k views
Python TypeError on regex
so I have this code...
url = 'http://google.com'
linkregex = re.compile('<a\s*href=[\'|"](.*?)[\'"].*?>')
m = urllib.request.urlopen(url)
msg = m.read()
links = ...
8
votes
4answers
4k views
should I put #! (shebang) in python scripts
should i put the shebang in my python scripts -- and if yes -- what form?
#!/usr/bin/env python
or
#!/usr/local/bin/python
i know the first one is "more portable" -- but i want to know what ...
8
votes
1answer
403 views
How is __slots__ implemented in Python?
How is __slots__ implemented in Python?
Is this exposed in the C interface?
How do I get __slots__ behaviour when defining a Python class in C via PyTypeObject?
8
votes
2answers
2k views
Custom (interactive) shell with Python
I'm currently trying to make some small shell-like utility for a custom script I wrote, so I can easily work with it (it's rather simple, so an interactive shell would be perfect).
Do you have any ...
7
votes
2answers
112 views
Using print() inside recursive functions in Python3
I am following the book Introduction to Computing Using Python, by Ljubomir Perkovic, and I am having trouble with one of the examples in recursion section of the book. The code is as follows:
def ...
7
votes
4answers
1k views
Use “byte-like object” from urlopen.read with json?
Just trying to test out very simple Python json commands, but having some trouble.
urlopen('http://www.similarsitesearch.com/api/similar/ebay.com').read()
should output
...
7
votes
1answer
218 views
Efficient multiprocessing of massive, brute force maximization in Python 3
This is an extension of my recent question Avoiding race conditions in Python 3's multiprocessing Queues. Hopefully this version of the question is more specific.
TL;DR: In a multiprocessing ...

