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
495172c3
Kaydet (Commit)
495172c3
authored
Kas 20, 2002
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add change to int() and OverflowError
Re-order the "porting" section to list items by decreasing significance
üst
db951c34
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
9 deletions
+19
-9
whatsnew23.tex
Doc/whatsnew/whatsnew23.tex
+19
-9
No files found.
Doc/whatsnew/whatsnew23.tex
Dosyayı görüntüle @
495172c3
...
...
@@ -788,6 +788,12 @@ document.
added along with the built-in
\class
{
bool
}
type, as described in
section~
\ref
{
section-bool
}
of this document.
\item
The
\function
{
int()
}
type constructor will now return a long
integer instead of raising an
\exception
{
OverflowError
}
when a string
or floating-point number is too large to fit into an integer. This
can lead to the paradoxical result that
\code
{
isinstance(int(
\var
{
expression
}
), int)
}
is false, but that seems unlikely to cause problems in practice.
\item
Built-in types now support the extended slicing syntax,
as described in section~
\ref
{
section-slices
}
of this document.
...
...
@@ -1602,18 +1608,15 @@ This section lists changes that may actually require changes to your code:
\item
\keyword
{
yield
}
is now always a keyword; if it's used as a
variable name in your code, a different name must be chosen.
\item
You can no longer disable assertions by assigning to
\code
{__
debug
__}
.
\item
Using
\code
{
None
}
as a variable name will now result in a
\exception
{
SyntaxWarning
}
warning.
\item
Names of extension types defined by the modules included with
Python now contain the module and a
\character
{
.
}
in front of the type
name.
\item
For strings
\var
{
X
}
and
\var
{
Y
}
,
\code
{
\var
{
X
}
in
\var
{
Y
}}
now works
if
\var
{
X
}
is more than one character long.
\item
The
\function
{
int
()
}
type constructor will now return a long
integer instead of raising an
\exception
{
OverflowError
}
when a string
or floating
-
point number is too large to fit into an integer.
\item
You can no longer disable assertions by assigning to
\code
{__
debug
__}
.
\item
The Distutils
\function
{
setup
()
}
function has gained various new
keyword arguments such as
\var
{
depends
}
. Old versions of the
Distutils will abort if passed unknown keywords. The fix is to check
...
...
@@ -1630,6 +1633,13 @@ if hasattr(core, 'get_distutil_options'):
ext
=
Extension
(**
kw
)
\end
{
verbatim
}
\item
Using
\code
{
None
}
as a variable name will now result in a
\exception
{
SyntaxWarning
}
warning.
\item
Names of extension types defined by the modules included with
Python now contain the module and a
\character
{
.
}
in front of the type
name.
\end
{
itemize
}
...
...
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