Re: [Python-3000] TextIOWrapper.read() "fixed"?

2008-06-06 Thread Humberto Diogenes
On 06/06/2008, at 15:14, Guido van Rossum wrote: On Fri, Jun 6, 2008 at 3:02 AM, Humberto Diogenes <[EMAIL PROTECTED] > wrote: Is that still necessary? I can't tell for sure what Barry meant, but this was introduced in August 2007. Since then, a lot has changed in io.py. Why do

[Python-3000] TextIOWrapper.read() "fixed"?

2008-06-06 Thread Humberto Diogenes
I found this on Lib/email/parser.py, on Parser.parse(): while True: data = fp.read(8192) if not data: break # XXX When Guido fixes TextIOWrapper.read() to act just like # .readlines(), this... feedparser.fee

Re: [Python-3000] [Python-Dev] Finishing up PEP 3108

2008-05-29 Thread Humberto Diogenes
On 29/05/2008, at 14:32, Brett Cannon wrote: On Thu, May 29, 2008 at 12:12 AM, Georg Brandl <[EMAIL PROTECTED]> wrote: Issue 2848 - mimetools has been deprecated for a while, but it is still used in a bunch of places. Since this has been deprecated in PEP 4 for a long time, should we add

Re: [Python-3000] Removal of os.path.walk

2008-05-09 Thread Humberto Diogenes
On 09/05/2008, at 04:45, Humberto Diogenes wrote: I noticed you've already removed os.path.walk in r62909, but there are still some references to it in the code, as I noticed issuing a `make altinstall` on a Mac: AttributeError: 'module' object has no attribute 'wal

Re: [Python-3000] Removal of os.path.walk

2008-05-09 Thread Humberto Diogenes
On 08/05/2008, at 00:12, Guido van Rossum wrote: On Wed, May 7, 2008 at 7:21 PM, Benjamin Peterson <[EMAIL PROTECTED]> wrote: Can I go ahead and remove this then? Yes, but let's do it after Barry has released the alphas. -- --Guido van Rossum (home page: http://www.python.org/~guido/)

Re: [Python-3000] Adapt pydoc to new doc system

2008-04-28 Thread Humberto Diogenes
On 28/04/2008, at 10:15, Georg Brandl wrote: Humberto Diogenes schrieb: http://bugs.python.org/issue1883 Can someone give more directions on what really needs to be done? Hehe, this was mainly meant as a reminder item for me since the URLs for pydoc to refer to HTML documentation will

[Python-3000] Adapt pydoc to new doc system

2008-04-28 Thread Humberto Diogenes
Hi, I started working on this ticket but I'm going to need some clarifications, it's called "Adapt pydoc to new doc system" and says only "so that this doesn't get lost": http://bugs.python.org/issue1883 Can someone give more directions on what really needs to be done? Thanks in adv

[Python-3000] help() broken?

2008-04-23 Thread Humberto Diogenes
Hi, It seems that help() doesn't work on instances in py3k. Is this what this ticket is about? http://bugs.python.org/issue1883 Python 3.0a4+ (py3k:62469M, Apr 23 2008, 20:46:05) [GCC 4.0.1 (Apple Inc. build 5465)] on darwin Type "help", "copyright", "credits" or "license" for more infor

[Python-3000] i18n prefix

2007-04-16 Thread Humberto Diogenes
Hi, folks!! This is my first post to python-3000. After Guido PEPs-deadline announcement, I decided to discuss an old idea while it still has some chance of being accepted. :) No, I do not want i18n identifiers. What I'd like to propose is a standard syntax for i18n strings. Something

Re: [Python-3000] Reminder: Py3k PEPs due by April

2007-04-16 Thread Humberto Diogenes
On 10/04/2007, at 21:24, Greg Ewing wrote: > Raymond Hettinger wrote: > >> Here's that I think might not need a PEP: >> >> * Eliminate implicit string concatenation: "abc" "def" >> in favor of an explicit + operation. > > -0.707. I've used languages where the only way of > splitting a string ov