Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
99533a95
Commit
99533a95
authored
Dec 06, 2007
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get ready for releasing 3.0a2.
(Next: update the whatsnew docs.)
parent
f64db9f6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
6 deletions
+30
-6
Include/patchlevel.h
Include/patchlevel.h
+2
-2
Misc/NEWS
Misc/NEWS
+3
-1
README
README
+16
-3
RELNOTES
RELNOTES
+9
-0
No files found.
Include/patchlevel.h
View file @
99533a95
...
...
@@ -19,10 +19,10 @@
#define PY_MINOR_VERSION 0
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
#define PY_RELEASE_SERIAL
1
#define PY_RELEASE_SERIAL
2
/* Version as a string */
#define PY_VERSION "3.0a
1+
"
#define PY_VERSION "3.0a
2
"
/* Subversion Revision number of this file (not of the repository) */
#define PY_PATCHLEVEL_REVISION "$Revision$"
...
...
Misc/NEWS
View file @
99533a95
...
...
@@ -6,7 +6,9 @@ Python News
What's New in Python 3.0a2?
*Unreleased*
*Release date: 07-Dec-2007*
(Note: this list is incomplete.)
Core and Builtins
-----------------
...
...
README
View file @
99533a95
This is Python version 3.0 alpha
1
This is Python version 3.0 alpha
2
==================================
For notes specific to this release, see RELNOTES in this directory.
...
...
@@ -11,8 +11,8 @@ have changed considerably, and a lot of deprecated features have
finally been removed.
This is an ongoing project; the cleanup isn't expected to be complete
until
2008. In particular there are plans to reorganize the standard
library namespace.
until
some time in 2008. In particular there are plans to reorganize
the standard
library namespace.
Release Schedule
...
...
@@ -55,6 +55,19 @@ We'll eventually have a comprehensive overview of the changes in a
"What's New in Python 3.0" document. Please help write it!
What's New Since 3.0a1
----------------------
Undoubtedly the biggest change is in the bytes type: 'bytes' is now
immutable, and there is a new mutable bytes type 'bytearray'. These
two types are interoperable in every way. For more info on this
issue, read PEP 3137.
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).
Converting From Python 2.x to 3.0
---------------------------------
...
...
RELNOTES
View file @
99533a95
...
...
@@ -5,6 +5,15 @@ Release notes describe unfinished work in particular releases.
Please report bugs to http://bugs.python.org/.
Version 3.0a2 - Release Date 07-Dec-2007
----------------------------------------
* SSL support is back! However, the SSL code appears to be leaking
quite a bit.
* Otherwise, the 3.0a1 release notes still apply, except hashlib no
longer requires openssl.
Version 3.0a1 - Release Date 31-Aug-2007
----------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment