Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 1 | Python 3000 Release Notes |
| 2 | ========================= |
| 3 | |
| 4 | Release notes describe unfinished work in particular releases. |
| 5 | |
| 6 | Please report bugs to http://bugs.python.org/. |
| 7 | |
Guido van Rossum | 99533a9 | 2007-12-06 05:07:41 +0000 | [diff] [blame] | 8 | Version 3.0a2 - Release Date 07-Dec-2007 |
| 9 | ---------------------------------------- |
| 10 | |
| 11 | * SSL support is back! However, the SSL code appears to be leaking |
| 12 | quite a bit. |
| 13 | |
| 14 | * Otherwise, the 3.0a1 release notes still apply, except hashlib no |
| 15 | longer requires openssl. |
| 16 | |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 17 | Version 3.0a1 - Release Date 31-Aug-2007 |
| 18 | ---------------------------------------- |
| 19 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 20 | * SSL support is disabled. This causes test_ssl to be skipped. |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 21 | The new SSL support in the 2.6 trunk (with server-side support and |
| 22 | certificate verification) will be ported for 3.0a2. |
| 23 | |
Guido van Rossum | 7576583 | 2007-08-31 00:38:53 +0000 | [diff] [blame] | 24 | * If you don't have `openssl <http://www.openssl.org>`_ installed, or |
| 25 | a version older than 0.9.7, hashlib is non-functional, which means |
| 26 | there is no way to compute MD5 checksums. This breaks some modules. |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 27 | |
| 28 | * Platform support is reduced. We've mostly tested on Linux, OSX, |
Guido van Rossum | 7576583 | 2007-08-31 00:38:53 +0000 | [diff] [blame] | 29 | and Windows. Solaris is also supported (somewhat). |
| 30 | |
| 31 | * There may be additional issues on 64-bit architectures. |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 32 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 33 | * There are still some open issues on Windows. |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 34 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 35 | * Some new features are very fresh, and probably contain bugs: the new |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 36 | format() method on strings (PEP 3101), the strict separation of |
| 37 | bytes and strings, the new buffer API (PEP 3118). |
Guido van Rossum | 845702c | 2007-08-30 18:44:53 +0000 | [diff] [blame] | 38 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 39 | * IDLE still has some open issues. If you can't run it at all, try |
Guido van Rossum | 845702c | 2007-08-30 18:44:53 +0000 | [diff] [blame] | 40 | "idle -n" which disables the separate subprocess for the |
| 41 | interpreter. |