Barry Warsaw | c1e689e | 2008-06-19 00:35:43 +0000 | [diff] [blame] | 1 | This is Python version 3.0 beta 1 |
| 2 | ================================= |
Guido van Rossum | 9144763 | 2000-04-11 17:11:09 +0000 | [diff] [blame] | 3 | |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 4 | For notes specific to this release, see RELNOTES in this directory. |
Christian Heimes | b558a2e | 2008-03-02 22:46:37 +0000 | [diff] [blame] | 5 | Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
| 6 | Python Software Foundation. |
| 7 | All rights reserved. |
Guido van Rossum | 4405cf3 | 2007-08-30 17:16:55 +0000 | [diff] [blame] | 8 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 9 | Python 3000 (a.k.a. "Py3k", and released as Python 3.0) is a new |
| 10 | version of the language, which is incompatible with the 2.x line of |
| 11 | releases. The language is mostly the same, but many details, |
| 12 | especially how built-in objects like dictionaries and strings work, |
| 13 | have changed considerably, and a lot of deprecated features have |
| 14 | finally been removed. |
| 15 | |
| 16 | This is an ongoing project; the cleanup isn't expected to be complete |
Guido van Rossum | 99533a9 | 2007-12-06 05:07:41 +0000 | [diff] [blame] | 17 | until some time in 2008. In particular there are plans to reorganize |
| 18 | the standard library namespace. |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 19 | |
Guido van Rossum | 50e9fb9 | 2006-08-17 05:42:55 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 21 | Release Schedule |
| 22 | ---------------- |
Guido van Rossum | 3ff96dd | 1996-07-30 18:05:04 +0000 | [diff] [blame] | 23 | |
Barry Warsaw | bb5cd08 | 2008-04-02 23:33:27 +0000 | [diff] [blame] | 24 | The release plan is to have a series of alpha releases in 2007 and 2008, |
Barry Warsaw | c1e689e | 2008-06-19 00:35:43 +0000 | [diff] [blame] | 25 | beta releases in 2008, and a final release in September 2008. The alpha |
Barry Warsaw | bb5cd08 | 2008-04-02 23:33:27 +0000 | [diff] [blame] | 26 | releases are primarily aimed at developers who want a sneak peek at the |
| 27 | new langauge, especially those folks who plan to port their code to |
| 28 | Python 3000. The hope is that by the time of the final release, many |
| 29 | 3rd party packages will already be available in a 3.0-compatible form. |
| 30 | |
| 31 | See PEP 361 for release details: http://www.python.org/dev/peps/pep-0361/ |
Guido van Rossum | 8d90f9d | 1997-05-22 20:13:25 +0000 | [diff] [blame] | 32 | |
Guido van Rossum | f501b4e | 1996-10-25 14:32:48 +0000 | [diff] [blame] | 33 | |
Guido van Rossum | c07d5fa | 2000-09-01 22:50:02 +0000 | [diff] [blame] | 34 | Documentation |
| 35 | ------------- |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 36 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 37 | Documentation for Python 3000 is online, updated twice a day: |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 38 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 39 | http://docs.python.org/dev/3.0/ |
Guido van Rossum | c07d5fa | 2000-09-01 22:50:02 +0000 | [diff] [blame] | 40 | |
Benjamin Peterson | 2a691a8 | 2008-03-31 01:51:45 +0000 | [diff] [blame] | 41 | All documentation is also available online at the Python web site |
Barry Warsaw | bb5cd08 | 2008-04-02 23:33:27 +0000 | [diff] [blame] | 42 | (http://docs.python.org/, see below). It is available online for |
| 43 | occasional reference, or can be downloaded in many formats for faster |
| 44 | access. The documentation is downloadable in HTML, PostScript, PDF, |
| 45 | LaTeX (through 2.5), and reStructuredText (2.6+) formats; the LaTeX and |
| 46 | reStructuredText versions are primarily for documentation authors, |
| 47 | translators, and people with special formatting requirements. |
Benjamin Peterson | 2a691a8 | 2008-03-31 01:51:45 +0000 | [diff] [blame] | 48 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 49 | This is a work in progress; please help improve it! |
Barry Warsaw | 0655745 | 2001-12-14 20:47:12 +0000 | [diff] [blame] | 50 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 51 | The design documents for Python 3000 are also online. While the |
| 52 | reference documentation is being updated, the PEPs are often the best |
| 53 | source of information about new features. Start by reading PEP 3000: |
Barry Warsaw | 0655745 | 2001-12-14 20:47:12 +0000 | [diff] [blame] | 54 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 55 | http://python.org/dev/peps/pep-3000/ |
Guido van Rossum | c07d5fa | 2000-09-01 22:50:02 +0000 | [diff] [blame] | 56 | |
Guido van Rossum | c07d5fa | 2000-09-01 22:50:02 +0000 | [diff] [blame] | 57 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 58 | What's New |
Guido van Rossum | 91cb9d2 | 1995-04-10 11:47:38 +0000 | [diff] [blame] | 59 | ---------- |
| 60 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 61 | For an overview of what's new in Python 3000, see Guido van Rossum's |
| 62 | blog at artima.com: |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 63 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 64 | http://www.artima.com/weblogs/index.jsp?blogger=guido |
Guido van Rossum | 6477380 | 1997-11-26 17:07:02 +0000 | [diff] [blame] | 65 | |
Georg Brandl | f3f67f2 | 2008-02-22 14:22:51 +0000 | [diff] [blame] | 66 | We try to eventually have a comprehensive overview of the changes in |
| 67 | the "What's New in Python 3.0" document, found at |
| 68 | |
| 69 | http://docs.python.org/dev/3.0/whatsnew/3.0 |
| 70 | |
| 71 | Please help write it! |
Jack Jansen | a39ef86 | 2001-08-19 21:17:03 +0000 | [diff] [blame] | 72 | |
Guido van Rossum | 99533a9 | 2007-12-06 05:07:41 +0000 | [diff] [blame] | 73 | For a more detailed change log, read Misc/NEWS (though this file, too, |
| 74 | is incomplete, and also doesn't list anything merged in from the 2.6 |
| 75 | release under development). |
| 76 | |
Barry Warsaw | 160b9a3 | 2008-05-08 11:54:13 +0000 | [diff] [blame] | 77 | If you want to install multiple versions of Python see the section below |
| 78 | entitled "Installing multiple versions". |
| 79 | |
| 80 | |
Benjamin Peterson | 2a691a8 | 2008-03-31 01:51:45 +0000 | [diff] [blame] | 81 | Proposals for enhancement |
Barry Warsaw | bb5cd08 | 2008-04-02 23:33:27 +0000 | [diff] [blame] | 82 | ------------------------- |
Benjamin Peterson | 2a691a8 | 2008-03-31 01:51:45 +0000 | [diff] [blame] | 83 | |
Benjamin Peterson | ad9d48d | 2008-04-02 21:49:44 +0000 | [diff] [blame] | 84 | If you have a proposal to change Python, you may want to send an email to the |
| 85 | comp.lang.python or python-ideas mailing lists for inital feedback. A Python |
| 86 | Enhancement Proposal (PEP) may be submitted if your idea gains ground. All |
| 87 | current PEPs, as well as guidelines for submitting a new PEP, are listed at |
| 88 | http://www.python.org/dev/peps/. |
Guido van Rossum | 99533a9 | 2007-12-06 05:07:41 +0000 | [diff] [blame] | 89 | |
Barry Warsaw | 160b9a3 | 2008-05-08 11:54:13 +0000 | [diff] [blame] | 90 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 91 | Converting From Python 2.x to 3.0 |
| 92 | --------------------------------- |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 93 | |
Barry Warsaw | 160b9a3 | 2008-05-08 11:54:13 +0000 | [diff] [blame] | 94 | Python 2.6 (to be released concurrent with Python 3.0) will contain features |
| 95 | to help locating code that needs to be changed, such as optional warnings when |
| 96 | deprecated features are used, and backported versions of certain key Python |
| 97 | 3000 features. |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 98 | |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 99 | |
| 100 | Installing multiple versions |
| 101 | ---------------------------- |
| 102 | |
| 103 | On Unix and Mac systems if you intend to install multiple versions of Python |
| 104 | using the same installation prefix (--prefix argument to the configure |
| 105 | script) you must take care that your primary python executable is not |
| 106 | overwritten by the installation of a different versio. All files and |
| 107 | directories installed using "make altinstall" contain the major and minor |
| 108 | version and can thus live side-by-side. "make install" also creates |
| 109 | ${prefix}/bin/python which refers to ${prefix}/bin/pythonX.Y. If you intend |
| 110 | to install multiple versions using the same prefix you must decide which |
| 111 | version (if any) is your "primary" version. Install that version using |
| 112 | "make install". Install all other versions using "make altinstall". |
| 113 | |
| 114 | For example, if you want to install Python 2.5, 2.6 and 3.0 with 2.6 being |
| 115 | the primary version, you would execute "make install" in your 2.6 build |
| 116 | directory and "make altinstall" in the others. |
| 117 | |
| 118 | |
| 119 | Configuration options and variables |
| 120 | ----------------------------------- |
| 121 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 122 | A source-to-source translation tool, "2to3", can take care of the |
| 123 | mundane task of converting large amounts of source code. It is not a |
| 124 | complete solution but is complemented by the deprecation warnings in |
| 125 | 2.6. This tool is currently available via the Subversion sandbox: |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 126 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 127 | http://svn.python.org/view/sandbox/trunk/2to3/ |
Martin v. Löwis | 2df6694 | 2000-12-13 14:14:32 +0000 | [diff] [blame] | 128 | |
| 129 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 130 | Issue Tracker and Mailing List |
| 131 | ------------------------------ |
Michael W. Hudson | 71dcc3e | 2005-02-22 15:33:26 +0000 | [diff] [blame] | 132 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 133 | We're soliciting bug reports about all aspects of the language. Fixes |
| 134 | are also welcome, preferable in unified diff format. Please use the |
| 135 | issue tracker: |
Fred Drake | 6caae14 | 2000-10-25 17:51:02 +0000 | [diff] [blame] | 136 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 137 | http://bugs.python.org/ |
Guido van Rossum | 76be6ed | 1995-01-02 18:33:54 +0000 | [diff] [blame] | 138 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 139 | If you're not sure whether you're dealing with a bug or a feature, use |
| 140 | the mailing list: |
| 141 | |
| 142 | python-3000@python.org |
| 143 | |
| 144 | To subscribe to the list, use the mailman form: |
| 145 | |
| 146 | http://mail.python.org/mailman/listinfo/python-3000/ |
Georg Brandl | 81299ad | 2006-02-20 10:24:06 +0000 | [diff] [blame] | 147 | |
Michael W. Hudson | 71dcc3e | 2005-02-22 15:33:26 +0000 | [diff] [blame] | 148 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 149 | Build Instructions |
Guido van Rossum | c07d5fa | 2000-09-01 22:50:02 +0000 | [diff] [blame] | 150 | ------------------ |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 151 | |
Neal Norwitz | bf2604c | 2007-08-30 17:22:44 +0000 | [diff] [blame] | 152 | On Unix, Linux, BSD, OSX, and Cygwin: |
Guido van Rossum | 433c8ad | 1994-08-01 12:07:07 +0000 | [diff] [blame] | 153 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 154 | ./configure |
| 155 | make |
| 156 | make test |
| 157 | sudo make install # or "make altinstall" |
| 158 | |
| 159 | You can pass many options to the configure script; run "./configure |
| 160 | --help" to find out more. On OSX and Cygwin, the executable is called |
| 161 | python.exe; elsewhere it's just python. |
| 162 | |
| 163 | On Mac OS X, if you have configured Python with --enable-framework, |
| 164 | you should use "make frameworkinstall" to do the installation. Note |
| 165 | that this installs the Python executable in a place that is not |
| 166 | normally on your PATH, you may want to set up a symlink in |
| 167 | /usr/local/bin. |
| 168 | |
Martin v. Löwis | 0c3842f | 2007-08-30 05:34:10 +0000 | [diff] [blame] | 169 | On Windows, see PCbuild/readme.txt. |
| 170 | |
Guido van Rossum | 1c896e3 | 2007-08-29 23:03:30 +0000 | [diff] [blame] | 171 | If you wish, you can create a subdirectory and invoke configure from |
| 172 | there. For example: |
| 173 | |
| 174 | mkdir debug |
| 175 | cd debug |
| 176 | ../configure --with-pydebug |
| 177 | make |
| 178 | make test |
| 179 | |
| 180 | (This will fail if you *also* built at the top-level directory. You |
| 181 | should do a "make clean" at the toplevel first.) |
Guido van Rossum | ef0f129 | 2007-08-30 14:51:05 +0000 | [diff] [blame] | 182 | |
| 183 | |
| 184 | Copyright and License Information |
| 185 | --------------------------------- |
| 186 | |
Barry Warsaw | 659fc42 | 2008-03-01 17:45:23 +0000 | [diff] [blame] | 187 | Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 |
Guido van Rossum | ef0f129 | 2007-08-30 14:51:05 +0000 | [diff] [blame] | 188 | Python Software Foundation. |
| 189 | All rights reserved. |
| 190 | |
| 191 | Copyright (c) 2000 BeOpen.com. |
| 192 | All rights reserved. |
| 193 | |
| 194 | Copyright (c) 1995-2001 Corporation for National Research Initiatives. |
| 195 | All rights reserved. |
| 196 | |
| 197 | Copyright (c) 1991-1995 Stichting Mathematisch Centrum. |
| 198 | All rights reserved. |
| 199 | |
| 200 | See the file "LICENSE" for information on the history of this |
| 201 | software, terms & conditions for usage, and a DISCLAIMER OF ALL |
| 202 | WARRANTIES. |
| 203 | |
| 204 | This Python distribution contains *no* GNU General Public License |
| 205 | (GPL) code, so it may be used in proprietary projects. There are |
| 206 | interfaces to some GNU code but these are entirely optional. |
| 207 | |
| 208 | All trademarks referenced herein are property of their respective |
| 209 | holders. |