blob: 252c98e8170f1cb7e8527dbbb4576e36a95373a5 [file] [log] [blame]
Guido van Rossum4405cf32007-08-30 17:16:55 +00001Python 3000 Release Notes
2=========================
3
4Release notes describe unfinished work in particular releases.
5
6Please report bugs to http://bugs.python.org/.
7
8Version 3.0a1 - Release Date 31-Aug-2007
9----------------------------------------
10
Guido van Rossume5e8eff2007-08-30 20:18:10 +000011* SSL support is disabled. This causes test_ssl to be skipped.
Guido van Rossum4405cf32007-08-30 17:16:55 +000012 The new SSL support in the 2.6 trunk (with server-side support and
13 certificate verification) will be ported for 3.0a2.
14
Guido van Rossume5e8eff2007-08-30 20:18:10 +000015* If you don't have openssl, hashlib is non-functional, which
16 means there is no way to compute MD5 checksums. This breaks some
17 modules.
18
19* Platform support is reduced. We've mostly tested on Linux, OSX,
Guido van Rossum4405cf32007-08-30 17:16:55 +000020 and Windows.
21
Guido van Rossume5e8eff2007-08-30 20:18:10 +000022* There are still some open issues on Windows.
Guido van Rossum4405cf32007-08-30 17:16:55 +000023
Guido van Rossume5e8eff2007-08-30 20:18:10 +000024* Some new features are very fresh, and probably contain bugs: the new
Guido van Rossum4405cf32007-08-30 17:16:55 +000025 format() method on strings (PEP 3101), the strict separation of
26 bytes and strings, the new buffer API (PEP 3118).
Guido van Rossum845702c2007-08-30 18:44:53 +000027
Guido van Rossume5e8eff2007-08-30 20:18:10 +000028* IDLE still has some open issues. If you can't run it at all, try
Guido van Rossum845702c2007-08-30 18:44:53 +000029 "idle -n" which disables the separate subprocess for the
30 interpreter.