Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
6answers
6k views

How are you planning on handling the migration to Python 3?

I'm sure this is a subject that's on most python developers' minds considering that Python 3 is coming out soon. Some questions to get us going in the right direction: Will you have a python 2 and ...
5
votes
1answer
73 views

Output being printed in the same line, Py3k

In Python 2.x, I'd write... for i in range(5): print i, ...to get integers from 0 to 4 printed in the same row. How to do that in Python 3.x, since print is a function now?
4
votes
3answers
128 views

How to define a binary string in Python in a way that works with both py2 and py3?

I am writing a module that is supposed to work in both Python 2 and 3 and I need to define a binary string. Usually this would be something like data = b'abc' but this code code fails on Python 2.5 ...
3
votes
1answer
51 views

Library to parse Python 2 and 3

I'm looking for a library that allows parsing and modification of Python 3 source code. There is the built-in ast module, but that doesn't allow parsing Python 3 code from Python 2 and vice versa. Is ...
3
votes
2answers
157 views

use/run python's 2to3 as or like a unittest

I have used the 2to3 utility to convert code from the command line. What I would like to do is run it basically as a unittest. Even if it tests the file rather than parts(funtions, methods...) as ...
3
votes
1answer
91 views

Tool like 2to3, except for merges

I maintain a fork of my project for Python 3.1. When I initially made the port from 2.6, I used 2to3, but now I constantly have to merge new code from the 2.6 fork into the 3.1 fork. How can I perform ...
2
votes
5answers
137 views

What's the preferred method in the community for having python 2.x and 3.x in the same codebase?

I am starting a project in Python 3.x, (I'm quite new to Python) and there exists the possibility that I will need to use say Thrift or any other library that is not yet ported to Python 3.x. I don't ...
1
vote
2answers
430 views

Problem regarding 3.0's “hashlib” module

I've been working on getting a 2.5 module ported to 3.0, mostly for my own education, when I've gotten stuck. The class "Builder" has as its init: def __init__(self, **options): ...
0
votes
2answers
354 views

python 2to3 manual modification

Is there a way to change python2.x source code to python 3.x manually. I guess using lib2to3 this can be done but I don't know exactly how to do this ?