2
votes
5answers
75 views
Python - Get a list of all the encodings python can encode to
I am writing a script that will try encoding bytes into many different encodings in python 2.6. This page http://www.python.org/doc/2.6/library/codecs.html?highlight=cp1250#id3 lis …
2
votes
5answers
79 views
There is no spawnl function in python 2.6?
I just noticed that my old codes written in python 2.5 does not work now. I am in python 2.6 btw.
>>> os.spawnl(os.P_NOWAIT,"setup.exe")
Traceback (most recent call last …
0
votes
1answer
26 views
Python 2.6 DB error
I'm trying to get the Yahoo! BOSS package working, but when I try to run the example file I get the following error:
$ python examples/ex5.py
File "examples/ex5.py", line 28
…
0
votes
1answer
18 views
What are the advantage and disadvantages of using a list comprehension in Python 2.54-6?
I've heard that list comprehensions can be slow sometimes, but I'm not sure why? I'm new to Python (coming from a C# background), and I'd like to know more about when to use a list …
1
vote
2answers
486 views
Replace html entities with the corresponding utf-8 characters in Python 2.6
I have a html text like this:
<xml ... >
and I want to convert it to something readable:
<xml ...>
Any easy (and fast) way to do it in Python?
3
votes
4answers
132 views
Python deprecated functions
I have a Django app written in Python 2.5 and I plan to upgrade it to be compatible with Python 2.6. It contains hundreds of .py files. Is there a simple way to find all deprecated …
1
vote
1answer
70 views
Easy Python Q: UnicodeEncodeError: ‘ascii’ codec can’t encode character ???
Hi, I'm trying to pass big strings of random html through regular expressions and my Python 2.6 script is choking on this:
UnicodeEncodeError: 'ascii' codec can't encode characte …
1
vote
5answers
124 views
Easy Q: UnicodeEncodeError: ‘ascii’ codec can’t encode character
Hi, I'm trying to pass big strings of random html through regular expressions and my Python 2.6 script is choking on this:
UnicodeEncodeError: 'ascii' codec can't encode characte …
1
vote
1answer
50 views
How to handle a tokenize error with unterminated multiline comments (python 2.6)
The following sample code:
import token, tokenize, StringIO
def generate_tokens(src):
rawstr = StringIO.StringIO(unicode(src))
tokens = tokenize.generate_tokens(rawstr.re …
0
votes
4answers
84 views
Using properties defined at a per-instance level not per-class
What I am trying to achieve is something like this:
class object:
def __init__(self):
WidthVariable(self)
print self.width
#Imagine I did this 60frame …
0
votes
0answers
11 views
PyDateTime_IMPORT macro not initializing PyDateTimeAPI variable
I'm using the Python C API on Windows using Visual Studio 2008. When I attempt to use the PyDate_Check macro, and other related macros, they cause an access violation because the s …
0
votes
2answers
53 views
Simple example of how to use ast.NodeVisitor?
Does anyone have a simple example using ast.NodeVisitor to walk the abstract syntax tree in Python 2.6? The difference between visit and generic_visit is unclear to me, and I canno …
2
votes
1answer
94 views
Problem with loading win32file.pyd on python 2.6
I can't make py2exe to pack correctly even a simple script that uses win32file
I'm constantly getting the following error message:
Traceback (most recent call last):
File "depen …
2
votes
3answers
1k views
Python + Leopard + Fink + Mac Ports + Python.org + Idiot = broken Python - fresh start?
I have been enjoying learning the basics of python, but before I started reading things I tried to install various python versions and modules clumsily. Now that I have some ideas …
1
vote
4answers
146 views
Moving to Python 2.6.x
My stuff is developed and running on Python 2.5.2
I want to move some code to 3.x, but that isn't feasible because so many of the external packages I use are not there yet. (Like …
