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
b5f91d7e
Kaydet (Commit)
b5f91d7e
authored
Eyl 24, 2012
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge with 3.3.0 release clone.
üst
a1f7655f
f2487177
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
54 additions
and
29 deletions
+54
-29
.hgtags
.hgtags
+1
-0
patchlevel.h
Include/patchlevel.h
+2
-2
__init__.py
Lib/distutils/__init__.py
+1
-1
idlever.py
Lib/idlelib/idlever.py
+1
-1
NEWS
Misc/NEWS
+47
-23
python-3.3.spec
Misc/RPM/python-3.3.spec
+1
-1
README
README
+1
-1
No files found.
.hgtags
Dosyayı görüntüle @
b5f91d7e
...
@@ -107,3 +107,4 @@ e15c554cd43eb23bc0a528a4e8741da9bbec9607 v3.3.0b1
...
@@ -107,3 +107,4 @@ e15c554cd43eb23bc0a528a4e8741da9bbec9607 v3.3.0b1
4972a8f1b2aa3d7cdd64dc96aa7fa112fe1ea343 v3.3.0b2
4972a8f1b2aa3d7cdd64dc96aa7fa112fe1ea343 v3.3.0b2
8bb5c7bc46ba43804480f3e328e1fa956672c885 v3.3.0rc1
8bb5c7bc46ba43804480f3e328e1fa956672c885 v3.3.0rc1
88a0792e8ba3e4916b24c7e7a522c277d326d66e v3.3.0rc2
88a0792e8ba3e4916b24c7e7a522c277d326d66e v3.3.0rc2
c191d21cefafb3832c45570e84854e309aa62eaa v3.3.0rc3
Include/patchlevel.h
Dosyayı görüntüle @
b5f91d7e
...
@@ -20,10 +20,10 @@
...
@@ -20,10 +20,10 @@
#define PY_MINOR_VERSION 3
#define PY_MINOR_VERSION 3
#define PY_MICRO_VERSION 0
#define PY_MICRO_VERSION 0
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
#define PY_RELEASE_SERIAL
2
#define PY_RELEASE_SERIAL
3
/* Version as a string */
/* Version as a string */
#define PY_VERSION "3.3.0rc
2
+"
#define PY_VERSION "3.3.0rc
3
+"
/*--end constants--*/
/*--end constants--*/
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
...
...
Lib/distutils/__init__.py
Dosyayı görüntüle @
b5f91d7e
...
@@ -13,5 +13,5 @@ used from a setup script as
...
@@ -13,5 +13,5 @@ used from a setup script as
# Updated automatically by the Python release process.
# Updated automatically by the Python release process.
#
#
#--start constants--
#--start constants--
__version__
=
"3.3.0rc
2
"
__version__
=
"3.3.0rc
3
"
#--end constants--
#--end constants--
Lib/idlelib/idlever.py
Dosyayı görüntüle @
b5f91d7e
IDLE_VERSION
=
"3.3.0rc
2
"
IDLE_VERSION
=
"3.3.0rc
3
"
Misc/NEWS
Dosyayı görüntüle @
b5f91d7e
...
@@ -2,8 +2,8 @@
...
@@ -2,8 +2,8 @@
Python
News
Python
News
+++++++++++
+++++++++++
What
's New in Python 3.3.1
What
's New in Python 3.3.1
?
==========================
==========================
=
*Release date: XX-XX-XXXX*
*Release date: XX-XX-XXXX*
...
@@ -20,14 +20,6 @@ Core and Builtins
...
@@ -20,14 +20,6 @@ Core and Builtins
- Issue #15965: Explicitly cast AT_FDCWD as (int). Required on Solaris 10
- Issue #15965: Explicitly cast AT_FDCWD as (int). Required on Solaris 10
(which defines AT_FDCWD as 0xffd19553), harmless on other platforms.
(which defines AT_FDCWD as 0xffd19553), harmless on other platforms.
- Issue #15926: Fix crash after multiple reinitializations of the interpreter.
- Issue #15895: Fix FILE pointer leak in one error branch of
PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit
is false an and set_main_loader() fails.
- Issue #15900: Fix reference leak in PyUnicode_TranslateCharmap().
- Issue #15839: Convert SystemErrors in super() to RuntimeErrors.
- Issue #15839: Convert SystemErrors in super() to RuntimeErrors.
- Issue #15846: Fix SystemError which happened when using ast.parse in an
- Issue #15846: Fix SystemError which happened when using ast.parse in an
...
@@ -39,24 +31,16 @@ Core and Builtins
...
@@ -39,24 +31,16 @@ Core and Builtins
Library
Library
-------
-------
- Issue #15925: fixed regression in email.utils.parsedate and parsedate_tz
- Issue #15421: Fix an OverflowError in Calendar.itermonthdates() after
handling of empty and non-date strings.
- Issue #15421: fix an OverflowError in Calendar.itermonthdates() after
datetime.MAXYEAR. Patch by Cédric Krier.
datetime.MAXYEAR. Patch by Cédric Krier.
- Issue #15970: xml.etree.ElementTree now serializes correctly the empty HTML
- Issue #15970: xml.etree.ElementTree now serializes correctly the empty HTML
elements '
meta
' and '
param
'.
elements '
meta
' and '
param
'.
- Issue #15842:
t
he SocketIO.{readable,writable,seekable} methods now
- Issue #15842:
T
he SocketIO.{readable,writable,seekable} methods now
raise ValueError when the file-like object is closed. Patch by Alessandro
raise ValueError when the file-like object is closed. Patch by Alessandro
Moura.
Moura.
- Issue #15882: Change _decimal to accept any coefficient tuple when
constructing infinities. This is done for backwards compatibility
with decimal.py: Infinity coefficients are undefined in _decimal
(in accordance with the specification).
- Issue #15876: Fix a refleak in the curses module: window.encoding.
- Issue #15876: Fix a refleak in the curses module: window.encoding.
- Issue #15881: Fixed atexit hook in multiprocessing. Original patch
- Issue #15881: Fixed atexit hook in multiprocessing. Original patch
...
@@ -87,9 +71,6 @@ Library
...
@@ -87,9 +71,6 @@ Library
Extension Modules
Extension Modules
-----------------
-----------------
- Issue #15977: Fix memory leak in Modules/_ssl.c when the function
_set_npn_protocols() is called multiple times, thanks to Daniel Sommermann.
Tests
Tests
-----
-----
...
@@ -130,10 +111,53 @@ Core and Builtins
...
@@ -130,10 +111,53 @@ Core and Builtins
Library
Library
-------
-------
What
's New in Python 3.3.0 Release Candidate 3?
===============================================
*Release date: 23-Sep-2012*
Core and Builtins
-----------------
- Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap().
- Issue #15926: Fix crash after multiple reinitializations of the interpreter.
- Issue #15895: Fix FILE pointer leak in one error branch of
PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit
is false an and set_main_loader() fails.
- Fixes for a few crash and memory leak regressions found by Coverity.
Library
-------
- Issue #15882: Change _decimal to accept any coefficient tuple when
constructing infinities. This is done for backwards compatibility
with decimal.py: Infinity coefficients are undefined in _decimal
(in accordance with the specification).
- Issue #15925: Fix a regression in email.util where the parsedate() and
parsedate_tz() functions did not return None anymore when the argument could
not be parsed.
Extension Modules
-----------------
- Issue #15973: Fix a segmentation fault when comparing datetime timezone
objects.
- Issue #15977: Fix memory leak in Modules/_ssl.c when the function
_set_npn_protocols() is called multiple times, thanks to Daniel Sommermann.
- Issue #15969: faulthandler module: rename dump_tracebacks_later() to
- Issue #15969: faulthandler module: rename dump_tracebacks_later() to
dump_traceback_later() and cancel_dump_tracebacks_later() to
dump_traceback_later() and cancel_dump_tracebacks_later() to
cancel_dump_traceback_later().
cancel_dump_traceback_later().
- _decimal module: use only C 89 style comments.
What'
s
New
in
Python
3.3.0
Release
Candidate
2
?
What'
s
New
in
Python
3.3.0
Release
Candidate
2
?
===============================================
===============================================
...
...
Misc/RPM/python-3.3.spec
Dosyayı görüntüle @
b5f91d7e
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
%define name python
%define name python
#--start constants--
#--start constants--
%define version 3.3.0rc
2
%define version 3.3.0rc
3
%define libvers 3.3
%define libvers 3.3
#--end constants--
#--end constants--
%define release 1pydotorg
%define release 1pydotorg
...
...
README
Dosyayı görüntüle @
b5f91d7e
This is Python version 3.3.0 release candidate
2
This is Python version 3.3.0 release candidate
3
================================================
================================================
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,
...
...
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