README 7.65 KB
Newer Older
Barry Warsaw's avatar
Barry Warsaw committed
1 2
This is Python version 3.1 alpha 0
==================================
3

4
For notes specific to this release, see RELNOTES in this directory.
5
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
Christian Heimes's avatar
Christian Heimes committed
6 7
Python Software Foundation.
All rights reserved.
8

Barry Warsaw's avatar
Barry Warsaw committed
9 10 11 12 13
Python 3.x is a new version of the language, which is incompatible with the
2.x line of releases.  The language is mostly the same, but many details,
especially how built-in objects like dictionaries and strings work, have
changed considerably, and a lot of deprecated features have finally been
removed.
14

15
This is an ongoing project; the cleanup isn't expected to be complete
16 17
until some time in 2008.  In particular there are plans to reorganize
the standard library namespace.
18

19

20 21
Release Schedule
----------------
22

Barry Warsaw's avatar
Barry Warsaw committed
23
See PEP XXX for release details: http://www.python.org/dev/peps/pep-XXX/
Guido van Rossum's avatar
Guido van Rossum committed
24

25

Guido van Rossum's avatar
Guido van Rossum committed
26 27
Documentation
-------------
28

Barry Warsaw's avatar
Barry Warsaw committed
29
Documentation for Python 3.1 is online, updated twice a day:
30

Barry Warsaw's avatar
Barry Warsaw committed
31
    http://docs.python.org/dev/3.1/
32

33
All documentation is also available online at the Python web site
34 35 36 37 38 39
(http://docs.python.org/, see below).  It is available online for
occasional reference, or can be downloaded in many formats for faster
access.  The documentation is downloadable in HTML, PostScript, PDF,
LaTeX (through 2.5), and reStructuredText (2.6+) formats; the LaTeX and
reStructuredText versions are primarily for documentation authors,
translators, and people with special formatting requirements.
40

41
This is a work in progress; please help improve it!
42

Barry Warsaw's avatar
Barry Warsaw committed
43 44 45
The design documents for Python 3 are also online.  While the reference
documentation is being updated, the PEPs are often the best source of
information about new features.  Start by reading PEP 3000:
46

47
    http://python.org/dev/peps/pep-3000/
48 49


50
What's New
51 52
----------

Barry Warsaw's avatar
Barry Warsaw committed
53 54
For an overview of what's new in Python 3, see Guido van Rossum's blog at
artima.com:
55

56
    http://www.artima.com/weblogs/index.jsp?blogger=guido
57

58
We try to eventually have a comprehensive overview of the changes in
Barry Warsaw's avatar
Barry Warsaw committed
59
the "What's New in Python 3.1" document, found at
60

Barry Warsaw's avatar
Barry Warsaw committed
61
    http://docs.python.org/dev/3.1/whatsnew/3.1
62 63

Please help write it!
64

65 66 67 68
For a more detailed change log, read Misc/NEWS (though this file, too,
is incomplete, and also doesn't list anything merged in from the 2.6
release under development).

69 70 71 72
If you want to install multiple versions of Python see the section below
entitled "Installing multiple versions".


73
Proposals for enhancement
74
-------------------------
75

76 77 78 79 80
If you have a proposal to change Python, you may want to send an email to the
comp.lang.python or python-ideas mailing lists for inital feedback. A Python
Enhancement Proposal (PEP) may be submitted if your idea gains ground. All
current PEPs, as well as guidelines for submitting a new PEP, are listed at
http://www.python.org/dev/peps/.
81

82

Barry Warsaw's avatar
Barry Warsaw committed
83
Converting From Python 2.x to 3.x
84
---------------------------------
85

Barry Warsaw's avatar
Barry Warsaw committed
86 87 88
Python starting with 2.6 will contain features to help locating code that
needs to be changed, such as optional warnings when deprecated features are
used, and backported versions of certain key Python 3.x features.
89

Christian Heimes's avatar
Christian Heimes committed
90

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
Testing
-------

To test the interpreter, type "make test" in the top-level directory.
This runs the test set twice (once with no compiled files, once with
the compiled files left by the previous test run).  The test set
produces some output.  You can generally ignore the messages about
skipped tests due to optional features which can't be imported.
If a message is printed about a failed test or a traceback or core
dump is produced, something is wrong.  On some Linux systems (those
that are not yet using glibc 6), test_strftime fails due to a
non-standard implementation of strftime() in the C library. Please
ignore this, or upgrade to glibc version 6.

By default, tests are prevented from overusing resources like disk space and
memory.  To enable these tests, run "make testall".

IMPORTANT: If the tests fail and you decide to mail a bug report,
*don't* include the output of "make test".  It is useless.  Run the
failing test manually, as follows:

        ./python Lib/test/regrtest.py -v test_whatever

(substituting the top of the source tree for '.' if you built in a
different directory).  This runs the test in verbose mode.


Christian Heimes's avatar
Christian Heimes committed
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
Installing multiple versions
----------------------------

On Unix and Mac systems if you intend to install multiple versions of Python
using the same installation prefix (--prefix argument to the configure
script) you must take care that your primary python executable is not
overwritten by the installation of a different versio.  All files and
directories installed using "make altinstall" contain the major and minor
version and can thus live side-by-side.  "make install" also creates
${prefix}/bin/python which refers to ${prefix}/bin/pythonX.Y.  If you intend
to install multiple versions using the same prefix you must decide which
version (if any) is your "primary" version.  Install that version using
"make install".  Install all other versions using "make altinstall".

For example, if you want to install Python 2.5, 2.6 and 3.0 with 2.6 being
the primary version, you would execute "make install" in your 2.6 build
directory and "make altinstall" in the others.


Configuration options and variables
-----------------------------------

140 141 142 143
A source-to-source translation tool, "2to3", can take care of the
mundane task of converting large amounts of source code.  It is not a
complete solution but is complemented by the deprecation warnings in
2.6.  This tool is currently available via the Subversion sandbox:
144

145
    http://svn.python.org/view/sandbox/trunk/2to3/
146

147

148 149
Issue Tracker and Mailing List
------------------------------
150

151 152 153
We're soliciting bug reports about all aspects of the language.  Fixes
are also welcome, preferable in unified diff format.  Please use the
issue tracker:
154

155
    http://bugs.python.org/
156

157 158
If you're not sure whether you're dealing with a bug or a feature, use
the mailing list:
159

160
    python-dev@python.org
161

162
To subscribe to the list, use the mailman form:
Guido van Rossum's avatar
Guido van Rossum committed
163

164
    http://mail.python.org/mailman/listinfo/python-dev/
165

166

167 168
Build Instructions
------------------
169

Neal Norwitz's avatar
Neal Norwitz committed
170
On Unix, Linux, BSD, OSX, and Cygwin:
171

172 173 174 175
    ./configure
    make
    make test
    sudo make install    # or "make altinstall"
176

177 178 179
You can pass many options to the configure script; run "./configure
--help" to find out more.  On OSX and Cygwin, the executable is called
python.exe; elsewhere it's just python.
180

181 182 183 184 185
On Mac OS X, if you have configured Python with --enable-framework,
you should use "make frameworkinstall" to do the installation.  Note
that this installs the Python executable in a place that is not
normally on your PATH, you may want to set up a symlink in
/usr/local/bin.
186

187 188
On Windows, see PCbuild/readme.txt.

189 190
If you wish, you can create a subdirectory and invoke configure from
there.  For example:
191

192 193 194 195 196
    mkdir debug
    cd debug
    ../configure --with-pydebug
    make
    make test
197

198 199
(This will fail if you *also* built at the top-level directory.  You
should do a "make clean" at the toplevel first.)
200 201 202 203 204


Copyright and License Information
---------------------------------

205
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
Python Software Foundation.
All rights reserved.

Copyright (c) 2000 BeOpen.com.
All rights reserved.

Copyright (c) 1995-2001 Corporation for National Research Initiatives.
All rights reserved.

Copyright (c) 1991-1995 Stichting Mathematisch Centrum.
All rights reserved.

See the file "LICENSE" for information on the history of this
software, terms & conditions for usage, and a DISCLAIMER OF ALL
WARRANTIES.

This Python distribution contains *no* GNU General Public License
(GPL) code, so it may be used in proprietary projects.  There are
interfaces to some GNU code but these are entirely optional.

All trademarks referenced herein are property of their respective
holders.