Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
41ea8ae6
Kaydet (Commit)
41ea8ae6
authored
Ara 04, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bump to 3.2b1.
üst
46402378
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
24 deletions
+23
-24
patchlevel.h
Include/patchlevel.h
+3
-3
__init__.py
Lib/distutils/__init__.py
+1
-1
idlever.py
Lib/idlelib/idlever.py
+1
-1
NEWS
Misc/NEWS
+15
-16
python-3.2.spec
Misc/RPM/python-3.2.spec
+1
-1
README
README
+2
-2
No files found.
Include/patchlevel.h
Dosyayı görüntüle @
41ea8ae6
...
...
@@ -19,11 +19,11 @@
#define PY_MAJOR_VERSION 3
#define PY_MINOR_VERSION 2
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
ALPH
A
#define PY_RELEASE_SERIAL
4
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_
BET
A
#define PY_RELEASE_SERIAL
1
/* Version as a string */
#define PY_VERSION "3.2
a4+
"
#define PY_VERSION "3.2
b1
"
/*--end constants--*/
/* Subversion Revision number of this file (not of the repository) */
...
...
Lib/distutils/__init__.py
Dosyayı görüntüle @
41ea8ae6
...
...
@@ -15,5 +15,5 @@ __revision__ = "$Id$"
# Updated automatically by the Python release process.
#
#--start constants--
__version__
=
"3.2
a4
"
__version__
=
"3.2
b1
"
#--end constants--
Lib/idlelib/idlever.py
Dosyayı görüntüle @
41ea8ae6
IDLE_VERSION
=
"3.2
a4
"
IDLE_VERSION
=
"3.2
b1
"
Misc/NEWS
Dosyayı görüntüle @
41ea8ae6
...
...
@@ -5,26 +5,25 @@ Python News
What's New in Python 3.2 Beta 1?
================================
*Release date:
XX
-Dec-2010*
*Release date:
05
-Dec-2010*
Core and Builtins
-----------------
- Issue #10596: Fix float.__mod__ to have the same behaviour as
float.__divmod__ with respect to signed zeros. -4.0 % 4.0 should be
0.0, not -0.0.
- Issue #10596: Fix float.__mod__ to have the same behaviour as float.__divmod__
with respect to signed zeros. -4.0 % 4.0 should be 0.0, not -0.0.
- Issue #1772833: Add the -q command-line option to suppress copyright
and
version output in interactive mode.
- Issue #1772833: Add the -q command-line option to suppress copyright
and
version output in interactive mode.
- Provide an *optimize* parameter in the built-in compile() function.
- Fixed several corner case issues on
os.stat/os.lstat related to reparse
points. (Windows)
- Fixed several corner case issues on
Windows in os.stat/os.lstat related to
reparse points.
- PEP 384 (Defining a Stable ABI) is implemented.
- Issue #2690: Range objects support negative indices and slicing
- Issue #2690: Range objects support negative indices and slicing
.
- Issue #9915: Speed up sorting with a key.
...
...
@@ -56,8 +55,8 @@ Library
- Add the "display" and "undisplay" pdb commands.
- Issue #7245: Add a SIGINT handler in pdb that allows to break a program
a
gain a
fter a "continue" command.
- Issue #7245: Add a SIGINT handler in pdb that allows to break a program
again
after a "continue" command.
- Add the "interact" pdb command.
...
...
@@ -260,8 +259,8 @@ C-API
-----
- Issue #10557: Added a new API function, PyUnicode_TransformDecimalToASCII(),
which transforms non-ASCII decimal digits in a Unicode string to their
ASCII equivalents.
which transforms non-ASCII decimal digits in a Unicode string to their
ASCII
equivalents.
- Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly
zero-initialize all fields, fixing compiler warnings seen when building
...
...
@@ -279,10 +278,10 @@ Tests
-----
- regrtest.py once again ensures the test directory is removed from sys.path
when it is invoked directly as the __main__ module
when it is invoked directly as the __main__ module
.
- `python -m test` can be used to run the test suite as well as
`python -m
test.regrtest`.
- `python -m test` can be used to run the test suite as well as
`python -m
test.regrtest`.
- Do not fail test_socket when the IP address of the local hostname cannot be
looked up.
...
...
Misc/RPM/python-3.2.spec
Dosyayı görüntüle @
41ea8ae6
...
...
@@ -39,7 +39,7 @@
%define name python
#--start constants--
%define version 3.2
a4
%define version 3.2
b1
%define libvers 3.2
#--end constants--
%define release 1pydotorg
...
...
README
Dosyayı görüntüle @
41ea8ae6
This is Python version 3.2
alpha 4
=================================
=
This is Python version 3.2
beta 1
=================================
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
Python Software Foundation.
...
...
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