[Python-Dev] Python 3.0a1 released!

2007-08-31 Thread Guido van Rossum
The release is available from http://python.org/download/releases/3.0/

I'll send a longer announcement to python-list and
python-announce-list. Please blog about this if you have a blog!

Thanks to all who helped out! It's been a great ride.

-- 
--Guido van Rossum (home page: http://www.python.org/~guido/)
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


[Python-Dev] the FakeSocket class in httplib.py -- remove it?

2007-08-31 Thread Bill Janssen
I'm wondering if it would be OK to remove the FakeSocket class in
httplib?  Actually, it's currently a function that returns one of its
arguments.  It's not documented as part of the module, and not used
elsewhere in the rest of the library.

Bill
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] the FakeSocket class in httplib.py -- remove it?

2007-08-31 Thread Brett Cannon
On 8/31/07, Bill Janssen <[EMAIL PROTECTED]> wrote:
> I'm wondering if it would be OK to remove the FakeSocket class in
> httplib?  Actually, it's currently a function that returns one of its
> arguments.  It's not documented as part of the module, and not used
> elsewhere in the rest of the library.

Since I assume that includes unit tests, I have no issue seeing it go
away, especially if it is not being kept up-to-date.  But I am willing
to bet someone out there is using it so it might be best to add a
DeprecationWarning for 2.6 and then remove in 3.0/2.7.

-Brett
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] the FakeSocket class in httplib.py -- remove it?

2007-08-31 Thread Bill Janssen
Yep, that includes unit tests.  OK, I'll add the deprecation warning.

Bill
___
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com