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 | |
| 8 | Version 3.0a1 - Release Date 31-Aug-2007 |
| 9 | ---------------------------------------- |
| 10 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 11 | * SSL support is disabled. This causes test_ssl to be skipped. |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 12 | 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 Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 15 | * 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 Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 20 | and Windows. |
| 21 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 22 | * There are still some open issues on Windows. |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 23 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 24 | * 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] | 25 | format() method on strings (PEP 3101), the strict separation of |
| 26 | bytes and strings, the new buffer API (PEP 3118). |
Guido van Rossum | 845702c | 2007-08-30 18:44:53 +0000 | [diff] [blame] | 27 | |
Guido van Rossum | e5e8eff | 2007-08-30 20:18:10 +0000 | [diff] [blame] | 28 | * 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] | 29 | "idle -n" which disables the separate subprocess for the |
| 30 | interpreter. |