[issue2775] Implement PEP 3108

2012-11-17 Thread Brett Cannon

Brett Cannon added the comment:

I think we are as close as we are going to get with PEP 3018 being implemented. 
if profile/cProfile ever get merged that is great (issue #16492), but I'm not 
holding my breath and thus I am closing this issue.

--
dependencies:  -Merge profile/cProfile in 3.n+1
resolution:  - fixed
status: open - closed

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



[issue2775] Implement PEP 3108

2011-12-09 Thread Antoine Pitrou

Antoine Pitrou pit...@free.fr added the comment:

 Brett, issue 2919 had a patch that merges profile/cProfile for a while 
 now but nobody test it yet.

 All I need it someone to download the patch, install it, test it on
 some random script and tell me if it works. I don't need more.

I don't see any patch there, only a .tgz and two Python files.

--

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



[issue2775] Implement PEP 3108

2011-12-08 Thread Alexandre Vassalotti

Alexandre Vassalotti alexan...@peadrop.com added the comment:

Brett, issue 2919 had a patch that merges profile/cProfile for a while now but 
nobody test it yet.

All I need it someone to download the patch, install it, test it on some random 
script and tell me if it works. I don't need more.

--

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



[issue2775] Implement PEP 3108

2011-11-27 Thread Meador Inge

Changes by Meador Inge mead...@gmail.com:


--
nosy: +meador.inge

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



[issue2775] Implement PEP 3108

2011-11-15 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

Answers to Eric's questions: yes and yes, but I probably won't bother until I 
do a final update to the PEP.

--

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



[issue2775] Implement PEP 3108

2011-11-14 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

Just so people know, if the profile situation isn't resolved by 3.3 I'm 
considering PEP 3108 done.

IOW, if anyone wants to step forward and deal with cProfile/profile, that would 
be appreciated. =)

--

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



[issue2775] Implement PEP 3108

2011-11-14 Thread Eric Snow

Eric Snow ericsnowcurren...@gmail.com added the comment:

For the stat module in the Obsolete section[1], should the entry be updated 
to indicate that the module was left alone (see issue 2874)?

Would it be worth having the Merging C and Python Impl... section[2] include 
a reference to PEP 399?


[1] http://www.python.org/dev/peps/pep-3108/#obsolete
[2] 
http://www.python.org/dev/peps/pep-3108/#merging-c-and-python-implementations-of-the-same-interface

--
nosy: +eric.snow

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



[issue2775] Implement PEP 3108

2010-12-28 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

Alas, too late for 3.2 now.

--
versions: +Python 3.3 -Python 3.2

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



[issue2775] Implement PEP 3108

2010-11-17 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
keywords:  -easy
versions:  -Python 2.7, Python 3.1

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



[issue2775] Implement PEP 3108

2010-10-26 Thread Antoine Pitrou

Antoine Pitrou pit...@free.fr added the comment:

Shouldn't this be closed? Most of this has been done and we can't do the rest 
anyway, without breaking backwards compatibility.

--
nosy: +pitrou
status: open - pending

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



[issue2775] Implement PEP 3108

2010-10-26 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

profile and cProfile could still conceivably be merged, even if it is under a 
new name if someone found the time to do the compatibility work.

--
status: pending - open

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



[issue2775] Implement PEP 3108

2010-10-26 Thread Georg Brandl

Georg Brandl ge...@python.org added the comment:

I will have a go at the profiler situation.

I imagine the following: deprecate the cProfile module, and provide both 
profiler classes from the profile module -- e.g. as PythonProfile and CProfile, 
and provide Profile = PythonProfile.  (From cProfile.py, obviously Profile = 
CProfile).  A lot of the interface (module-level helpers and script entry) are 
near duplicated anyway.

In 3.3, the default Profile could then be reassigned to CProfile.

--

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



[issue2775] Implement PEP 3108

2010-10-17 Thread Retro

Retro vinet...@gmail.com added the comment:

Did you manage to apply my fix zipfile-patch.diff to the trunk?

--

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



[issue2775] Implement PEP 3108

2010-10-17 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

If any action regarding your patch takes place there will be a comment here 
about it. Until then assume nothing has happened.

--

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



[issue2775] Implement PEP 3108

2010-10-16 Thread Retro

Retro vinet...@gmail.com added the comment:

My patch zipfile-patch.diff was sent to python-dev. Please act on it as you 
see fit. Thank you.

--

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



[issue2775] Implement PEP 3108

2010-10-14 Thread Retro

Retro vinet...@gmail.com added the comment:

Can you send my patch and comment to python-dev? Because I don't know how to. I 
don't know where is python-dev and what exactly you mean by this.

--

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



[issue2775] Implement PEP 3108

2010-10-14 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

No. Best I can do is suggest you perform an internet search on the term as it 
makes it obvious what python-dev is.

--

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



[issue2775] Implement PEP 3108

2010-10-13 Thread Retro

Retro vinet...@gmail.com added the comment:

I am very glad you're reorganizing the Standard Library. Thumbs up! I hope 
everything will comply to PEP 8 after you're done.

Since you're reorganizing, I have my own contribution. I have uploaded a patch. 
The issue7351 (http://bugs.python.org/issue7351) was not accepted at the time, 
I hope you'll accept this fix now.

My point is that every class name in module zipfile is like this:
- exception class: LargeZipFile
- normal class: ZipFile
- normal class: PyZipFile

So apply my fix to make the exception class BadZipfile consistent to others and 
let it be BadZipFile.

Thank you.

--
nosy: +Retro
Added file: http://bugs.python.org/file19222/zipfile-patch.diff

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



[issue2775] Implement PEP 3108

2010-10-13 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

The reorganization is over short of one or two lasting changes that may not 
even be made now. New suggestions are not directly being discussed here and 
would have to be taken up on python-dev.

--

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



[issue2775] Implement PEP 3108

2010-06-17 Thread Mark Dickinson

Changes by Mark Dickinson dicki...@gmail.com:


--
nosy:  -mark.dickinson

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



[issue2775] Implement PEP 3108

2010-02-06 Thread Éric Araujo

Changes by Éric Araujo mer...@netwok.org:


--
nosy: +Merwok

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



[issue2775] Implement PEP 3108

2010-01-15 Thread Florent Xicluna

Florent Xicluna la...@yahoo.fr added the comment:

Modules hotshot and xmllib give deprecation warnings. But they are not part 
of PEP 3108 or PEP 4.

--
nosy: +flox

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



[issue2775] Implement PEP 3108

2010-01-15 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

I don't know why hotshot was deprecated specifically for Python 3 as that was 
never directly part of the discussion for PEP 3108. As for xmllib, that is most 
likely an oversight. Either way they should get added to the relevant PEPs.

--

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



[issue2775] Implement PEP 3108

2009-07-03 Thread Benjamin Peterson

Benjamin Peterson benja...@python.org added the comment:

Thanks for the patch. Applied in r738067.

--

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



[issue2775] Implement PEP 3108

2009-07-02 Thread Henry Precheur

Henry Precheur he...@precheur.org added the comment:

I found some bsddb code left in setup.py. Patch attached.

--
nosy: +henry.precheur
Added file: http://bugs.python.org/file14434/setup.py.remove-bsddb.diff

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



[issue2775] Implement PEP 3108

2009-05-29 Thread R. David Murray

Changes by R. David Murray rdmur...@bitdance.com:


--
versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.6, Python 3.0

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



[issue2775] Implement PEP 3108

2009-03-12 Thread Brett Cannon

Brett Cannon br...@python.org added the comment:

For those of you following along, the only thing keeping PEP 3108 and
this issue from being finished are the two dependent issues: os.stat and
profile/cProfile.

--

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



[issue2775] Implement PEP 3108

2009-02-10 Thread Brett Cannon

Changes by Brett Cannon br...@python.org:


--
stage:  - needs patch

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



[issue2775] Implement PEP 3108

2008-08-06 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Create the urllib package

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-07-12 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Fixer for dbm is failing

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-07-10 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Fixer for dbm is failing

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-07-10 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +fix_imports does not handle intra-package renames

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-29 Thread Georgij Kondratjev

Georgij Kondratjev [EMAIL PROTECTED] added the comment:

Not creating new bug entry because everybody can quickly fix it.

In urllib/request.py some instances of URLError are raised with raise
urllib.error.URLError and this works, buth there are lines with raise
URLError which produces NameError: global name 'URLError' is not defined

--
nosy: +orivej

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-18 Thread Benjamin Peterson

Changes by Benjamin Peterson [EMAIL PROTECTED]:


--
dependencies:  -Create the urllib package

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-12 Thread Benjamin Peterson

Changes by Benjamin Peterson [EMAIL PROTECTED]:


--
dependencies:  -Remove mimetools usage from the stdlib

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-12 Thread Benjamin Peterson

Changes by Benjamin Peterson [EMAIL PROTECTED]:


--
dependencies:  -Remove usage of rfc822 from the stdlib

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-11 Thread Alexandre Vassalotti

Alexandre Vassalotti [EMAIL PROTECTED] added the comment:

Done with pickle and stringio.

--
dependencies:  -Merge StringIO/cStringIO in 3.0, merge pickle and cPickle in 3.0

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-11 Thread Barry A. Warsaw

Barry A. Warsaw [EMAIL PROTECTED] added the comment:

We've got what we've got for the first betas.

--
nosy: +barry
priority: release blocker - critical

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-08 Thread Benjamin Peterson

Changes by Benjamin Peterson [EMAIL PROTECTED]:


--
dependencies:  -Remove cl usage from aifc, Write UserDict fixer for 2to3

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-01 Thread Kurt B. Kaiser

Changes by Kurt B. Kaiser [EMAIL PROTECTED]:


--
nosy: +kbk

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-06-01 Thread Benjamin Peterson

Changes by Benjamin Peterson [EMAIL PROTECTED]:


--
dependencies:  -Remove htmllib use in the stdlib

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-29 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Backport UserString move from 3.0

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-25 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Rename _winreg to winreg, Rename the thread module to _thread, 
Revert ConfigParser rename in 2.6, Revert Queue rename in 2.6

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-24 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Revert SocketServer rename in 2.6

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-24 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


Removed file: http://bugs.python.org/file10267/socketserver_rename.patch

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-23 Thread Quentin Gallet-Gilles

Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment:

While working on the commands module removal, I found two missed import
renaming in the py3k branch that made regrtest skip some tests. The
attached patch corrects them.

Added file: http://bugs.python.org/file10416/import_renames_py3k.patch

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-23 Thread Benjamin Peterson

Benjamin Peterson [EMAIL PROTECTED] added the comment:

On Fri, May 23, 2008 at 7:49 AM, Quentin Gallet-Gilles
[EMAIL PROTECTED] wrote:

 Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment:

 While working on the commands module removal, I found two missed import
 renaming in the py3k branch that made regrtest skip some tests. The
 attached patch corrects them.

The test_tcl one was fixed in 2.6 (when we were renaming) and will be
merged into Py3k. I will catch the test_1413192.py. Thanks!

 Added file: http://bugs.python.org/file10416/import_renames_py3k.patch

 __
 Tracker [EMAIL PROTECTED]
 http://bugs.python.org/issue2775
 __


__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-22 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Rename repr to reprlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-21 Thread Mark Dickinson

Mark Dickinson [EMAIL PROTECTED] added the comment:

I'm working on issue 2873 (remove htmllib dependency from pydoc).

--
nosy: +marketdickinson

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-21 Thread Fred L. Drake, Jr.

Fred L. Drake, Jr. [EMAIL PROTECTED] added the comment:

On May 21, 2008, at 10:16 AM, Mark Dickinson wrote:
 I'm working on issue 2873 (remove htmllib dependency from pydoc).

Thanks, Mark!  I was dreading the thought of looking at that.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-21 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Backport UserList move in 3.0

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-21 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -2to3 fixer to rename markupbase to _markupbase

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-20 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -Create the html package, Moving lib-tk to tkinter package, 
Revert copy_reg rename in 2.6

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-20 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies:  -rename test_support to support

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-19 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

OK, so it turns out the way renames have been handled breaks pre-existing 
pickles. That means that the stubs in 2.6 will actually have to be the new 
names and not the old ones.

I will work with the stdlib-sig to try to come up with a reasonable way to 
rectify the situation, but until then do NOT check in any rename patches.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-19 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Merge StringIO/cStringIO in 3.0, Merge profile/cProfile in 3.0, 
merge pickle and cPickle in 3.0

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-19 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

Because of pickle compatibility in 2.x, all renames in the trunk need to 
be reverted. Work in 3.0 is still fine and won't be touched.

I have already updated the PEP with the new steps required for renames.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-19 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Create the html package, Moving lib-tk to tkinter package, 
Rename repr to reprlib, Revert ConfigParser rename in 2.6, Revert Queue rename 
in 2.6, Revert SocketServer rename in 2.6, Revert copy_reg rename in 2.6

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-18 Thread Fred L. Drake, Jr.

Fred L. Drake, Jr. [EMAIL PROTECTED] added the comment:

The html package has been created (issue 2882).

--
nosy: +fdrake

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-18 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

I have now removed the closed issues as dependencies. Thanks to everyone 
who has helped so far! You have no idea how appreciative I am.

--
dependencies:  -Create the html package, Create the tkinter package, Moving 
lib-tk to tkinter package, Rename repr to reprlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-16 Thread Alexandre Vassalotti

Alexandre Vassalotti [EMAIL PROTECTED] added the comment:

Quentin Gallet-Gilles wrote:
 I've found some places where configparser, copyreg, queue and
 socketserver haven't been renamed. The attached patch
 'renaming_leftovers_2.6.patch' corrects this.

Thanks! Applied in r63384.

--
nosy: +alexandre.vassalotti

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Quentin Gallet-Gilles

Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment:

I've found some places where configparser, copyreg, queue and
socketserver haven't been renamed. The attached patch
'renaming_leftovers_2.6.patch' corrects this.

I'm working on renaming markupbase in 2.6 as of now.

Added file: http://bugs.python.org/file10326/renaming_leftovers_2.6.patch

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Mauricio Vieira

Changes by Mauricio Vieira [EMAIL PROTECTED]:


--
nosy:  -mbcvieira

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Patch to rename markupbase to _markupbase

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

Removing htmllib is not as simple as just removing the modules as pydoc 
uses htmllib.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Remove commands for PEP 3108

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Remove htmllib use in the stdlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Remove use of the stat module in the stdlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Rename the thread module to _thread

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Backport UserDict move in 3.0

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Backport UserString move from 3.0

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Rename _winreg to winreg

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Rename repr to reprlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Create the dbm package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Create the html package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

Issue 2883 is where future http package stuff should occur. I referenced 
this issue for initial patches.

--
dependencies: +Create the http package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Create the tkinter package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Create the urllib package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

Issue 2884 references this issue as it is to be used to tracker the new 
tkinter package.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Create the xmlrpc package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-15 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

I have created an individual issue for every major step left in 
implementing PEP 3108. Each one that is still open is now listed as a 
dependency for this issue.

--
dependencies:  -Patch to rename *Server modules to lower-case, Patch to rename 
HTMLParser module to lower_case, Remove mac modules

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Quentin Gallet-Gilles

Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment:

I'm working on renaming the ConfigParser module.

--
nosy: +quentin.gallet-gilles

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Jesse Noller

Jesse Noller [EMAIL PROTECTED] added the comment:

I've somehow lost my xmlrpc* changes on my local machine - if someone else 
gets to it before me, feel free to work on it.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Juracy Filho

Juracy Filho [EMAIL PROTECTED] added the comment:

I almost finished the http package patch, but I'm doubt about how I
would do it with Docs.

There are various doc files: basehttpserver.rst, cgihttpserver.rst,
httplib.rst and so on.

Would I join them into one's or only update their information (imports) ?

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Add gestalt back into Python 3.0

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Juracy Filho

Juracy Filho [EMAIL PROTECTED] added the comment:

I've finished a patch for http package, but I've doubts about how to
make a patch.

I've used a svn diff and svn status to make the patch and status file
respectively.

Added file: http://bugs.python.org/file10324/http_package_on_py3k.diff

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Juracy Filho

Juracy Filho [EMAIL PROTECTED] added the comment:

Output for svn status of http package patch.

Added file: http://bugs.python.org/file10325/http_package_on_py3k.status

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-14 Thread Brett Cannon

Brett Cannon [EMAIL PROTECTED] added the comment:

On Wed, May 14, 2008 at 6:33 PM, Juracy Filho [EMAIL PROTECTED] wrote:

 Juracy Filho [EMAIL PROTECTED] added the comment:

 I've finished a patch for http package, but I've doubts about how to
 make a patch.

 I've used a svn diff and svn status to make the patch and status file
 respectively.

That should be enough. Thanks, Juracy!

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-13 Thread Georg Brandl

Changes by Georg Brandl [EMAIL PROTECTED]:


--
dependencies: +rename test_support to support

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-13 Thread Georg Brandl

Changes by Georg Brandl [EMAIL PROTECTED]:


--
dependencies: +Patch to rename HTMLParser module to lower_case

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-13 Thread Georg Brandl

Changes by Georg Brandl [EMAIL PROTECTED]:


--
dependencies: +Patch to rename *Server modules to lower-case

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-13 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Remove cl usage from aifc

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-13 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Remove mimetools usage from the stdlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-13 Thread Brett Cannon

Changes by Brett Cannon [EMAIL PROTECTED]:


--
dependencies: +Remove usage of rfc822 from the stdlib

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-12 Thread Guilherme Polo

Changes by Guilherme Polo [EMAIL PROTECTED]:


--
dependencies: +Moving lib-tk to tkinter package

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-11 Thread Andrews Patrick Rocha Medina

Andrews Patrick Rocha Medina [EMAIL PROTECTED] added the comment:

The files Python/compile.c and Python/pythonrun.c depends of the
_symtable (Python/symtable.c and Include/symtable.h).

What I do for remove _symtable in py3k?

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-11 Thread Humberto Diogenes

Humberto Diogenes [EMAIL PROTECTED] added the comment:

Andrews, this discussion would be more appropriate to the mailing list, 
but anyway: I believe you're mixing things up. When PEP 3108 says remove 
symtable/_symtable, it must be talking only about symtable.py and 
symtablemodule.c, not symtable.[ch] (used by the compiler).

--
nosy: +hdiogenes

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-11 Thread Guilherme Polo

Guilherme Polo [EMAIL PROTECTED] added the comment:

I'm working on the new package tkinter and dialogs merging where
appropriate.

--
nosy: +gpolo

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-11 Thread Guilherme Polo

Guilherme Polo [EMAIL PROTECTED] added the comment:

Patch regarding the move to tkinter package added.

What this patch does


* Moved lib-tk to tkinter and renamed modules according to PEP 3108
* Merged tkFileDialog into filedialog 
* Merged tkSimpleDialog into simpledialog 
* Updated imports in pydoc
* Updated imports in idlelib
* Updated imports in Tools and Demos
* Changed lib-tk to tkinter at Makefile.pre.in
* Removed TKPATH from Modules/Setup.dist
* Removed references of lib-tk at PC/

What has to be done
---

* Update iss script at PC/ to change lib-tk to tkinter
* Update docs
* stub modules ?

Added file: http://bugs.python.org/file10290/tkinter_package_and_fixes.diff

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue2775] Implement PEP 3108

2008-05-11 Thread Andrews Patrick Rocha Medina

Changes by Andrews Patrick Rocha Medina [EMAIL PROTECTED]:


Added file: http://bugs.python.org/file10292/symtable_removed_on_py3k.diff

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue2775
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



  1   2   >