[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-13 Thread Gregory P. Smith

Changes by Gregory P. Smith :


--
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-13 Thread Roundup Robot

Roundup Robot  added the comment:

New changeset 6fd16782ecb8 by Gregory P. Smith in branch '3.2':
Issue #13930: fix a / to use os.sep so that the test works on Windows.
http://hg.python.org/cpython/rev/6fd16782ecb8

New changeset f13fbd848d50 by Gregory P. Smith in branch 'default':
Issue #13930: fix a / to use os.sep so that the test works on Windows.
http://hg.python.org/cpython/rev/f13fbd848d50

New changeset 34445738954b by Gregory P. Smith in branch '2.7':
Issue #13930: fix a / to use os.sep so that the test works on Windows.
http://hg.python.org/cpython/rev/34445738954b

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-13 Thread Gregory P. Smith

Gregory P. Smith  added the comment:

oh did I miss a / vs os.sep somewhere?  Looking.  I'll fix this.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-13 Thread Antoine Pitrou

Changes by Antoine Pitrou :


--
stage: patch review -> committed/rejected
status: closed -> open

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-13 Thread Nadeem Vawda

Nadeem Vawda  added the comment:

Tests are failing on all the Windows buildbots (e.g. 
http://www.python.org/dev/buildbot/all/builders/x86%20XP-4%203.x/builds/5966/steps/test/logs/stdio
 ).

The problem seems to be that the test in question is hardwired to expect "/" as 
the directory separator.

--
nosy: +nadeem.vawda

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-12 Thread Gregory P. Smith

Changes by Gregory P. Smith :


--
resolution:  -> fixed
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-12 Thread Roundup Robot

Roundup Robot  added the comment:

New changeset ceea9ebfe003 by Gregory P. Smith in branch '3.2':
Issue #13930: Adds ability for 2to3 to write its output to a different
http://hg.python.org/cpython/rev/ceea9ebfe003

New changeset 9f583700d27f by Gregory P. Smith in branch '2.7':
Issue #13930: Adds ability for 2to3 to write its output to a different
http://hg.python.org/cpython/rev/9f583700d27f

New changeset 4b791e513c2c by Gregory P. Smith in branch 'default':
Issue #13930: Adds ability for 2to3 to write its output to a different
http://hg.python.org/cpython/rev/4b791e513c2c

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-12 Thread Gregory P. Smith

Changes by Gregory P. Smith :


--
hgrepos:  -111

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-03 Thread Gregory P. Smith

Changes by Gregory P. Smith :


Added file: http://bugs.python.org/file24411/a6cd0518495e.diff

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-03 Thread Gregory P. Smith

Gregory P. Smith  added the comment:

while the initial patch below was against 3.1 I'm only intending to commit this 
to 3.2, 3.3 and 2.7.

Feature backports on lib2to3 are allowed per 
http://mail.python.org/pipermail/python-dev/2011-December/115089.html.

--
nosy: +benjamin.peterson
versions:  -Python 3.1

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue13930] lib2to3 ability to output files into a different directory and alter their names

2012-02-02 Thread Gregory P. Smith

New submission from Gregory P. Smith :

In order for lib2to3 to be integrated into parts of our workflow at work we 
need it to be able to write converted code out to new directory and modify the 
filename in the process.  While doing that, it is very convenient if it can 
also write all files regardless of if refactoring caused any changes.

This patch adds those three features.

Uploading it to the bugtracker in hope of it showing up with a code review link.

--
assignee: gregory.p.smith
components: 2to3 (2.x to 3.x conversion tool)
files: 2to3-output-to-new-dir-gps01.patch
hgrepos: 111
keywords: patch
messages: 152498
nosy: gregory.p.smith, twouters
priority: normal
severity: normal
stage: patch review
status: open
title: lib2to3 ability to output files into a different directory and alter 
their names
type: enhancement
versions: Python 2.7, Python 3.1, Python 3.2, Python 3.3
Added file: http://bugs.python.org/file24406/2to3-output-to-new-dir-gps01.patch

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com