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
c70e003f
Kaydet (Commit)
c70e003f
authored
Eyl 21, 2006
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport of fix to allow exception instances to be sliced once again.
üst
7dcdeaf1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
test_exceptions.py
Lib/test/test_exceptions.py
+7
-0
NEWS
Misc/NEWS
+11
-0
exceptions.c
Objects/exceptions.c
+8
-1
No files found.
Lib/test/test_exceptions.py
Dosyayı görüntüle @
c70e003f
...
...
@@ -279,6 +279,13 @@ class ExceptionTests(unittest.TestCase):
'pickled "
%
r", attribute "
%
s'
%
(
e
,
checkArgName
))
def
testSlicing
(
self
):
# Test that you can slice an exception directly instead of requiring
# going through the 'args' attribute.
args
=
(
1
,
2
,
3
)
exc
=
BaseException
(
*
args
)
self
.
failUnlessEqual
(
exc
[:],
args
)
def
testKeywordArgs
(
self
):
# test that builtin exception don't take keyword args,
# but user-defined subclasses can if they want
...
...
Misc/NEWS
Dosyayı görüntüle @
c70e003f
...
...
@@ -4,6 +4,17 @@ Python News
(
editors
:
check
NEWS
.
help
for
information
about
editing
NEWS
using
ReST
.)
What
's New in Python 2.5.1c1?
=============================
*Release date: XX-XXX-XXXX*
Core and builtins
-----------------
- Allow exception instances to be directly sliced again.
What'
s
New
in
Python
2.5
(
final
)
================================
...
...
Objects/exceptions.c
Dosyayı görüntüle @
c70e003f
...
...
@@ -190,12 +190,19 @@ BaseException_getitem(PyBaseExceptionObject *self, Py_ssize_t index)
return
PySequence_GetItem
(
self
->
args
,
index
);
}
static
PyObject
*
BaseException_getslice
(
PyBaseExceptionObject
*
self
,
Py_ssize_t
start
,
Py_ssize_t
stop
)
{
return
PySequence_GetSlice
(
self
->
args
,
start
,
stop
);
}
static
PySequenceMethods
BaseException_as_sequence
=
{
0
,
/* sq_length; */
0
,
/* sq_concat; */
0
,
/* sq_repeat; */
(
ssizeargfunc
)
BaseException_getitem
,
/* sq_item; */
0
,
/* sq_slice; */
(
ssizessizeargfunc
)
BaseException_getslice
,
/* sq_slice; */
0
,
/* sq_ass_item; */
0
,
/* sq_ass_slice; */
0
,
/* sq_contains; */
...
...
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