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
ec1aa5c2
Kaydet (Commit)
ec1aa5c2
authored
Eki 07, 2015
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
More typos in 3.5 documentation and comments
üst
3f930dcd
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
test_time.py
Lib/test/test_time.py
+2
-2
NEWS
Misc/NEWS
+2
-2
abstract.c
Objects/abstract.c
+1
-1
methodobject.c
Objects/methodobject.c
+1
-1
No files found.
Lib/test/test_time.py
Dosyayı görüntüle @
ec1aa5c2
...
...
@@ -773,7 +773,7 @@ class TestPyTime_t(unittest.TestCase):
(
2
**
23
-
1e-9
,
8388607999999999
),
(
2
**
23
,
8388608000000000
),
# start lo
o
sing precision for value > 2^23 seconds
# start losing precision for value > 2^23 seconds
(
2
**
23
+
1e-9
,
8388608000000002
),
# nanoseconds are lost for value > 2^23 seconds
...
...
@@ -848,7 +848,7 @@ class TestPyTime_t(unittest.TestCase):
(
4194304000000000
,
2
**
22
),
(
4194304000000001
,
2
**
22
+
1e-9
),
# start lo
o
sing precision for value > 2^23 seconds
# start losing precision for value > 2^23 seconds
(
8388608000000002
,
2
**
23
+
1e-9
),
# nanoseconds are lost for value > 2^23 seconds
...
...
Misc/NEWS
Dosyayı görüntüle @
ec1aa5c2
...
...
@@ -285,7 +285,7 @@ Build
-----
-
Issue
#
24915
:
Add
LLVM
support
for
PGO
builds
and
use
the
test
suite
to
generate
the
profile
data
.
Initi
i
al
patch
by
Alecsandru
Patrascu
of
Intel
.
generate
the
profile
data
.
Initial
patch
by
Alecsandru
Patrascu
of
Intel
.
-
Issue
#
24910
:
Windows
MSIs
now
have
unique
display
names
.
...
...
@@ -1693,7 +1693,7 @@ Core and Builtins
type) can now be weakref'
ed
.
Patch
by
Wei
Wu
.
-
Issue
#
22077
:
Improve
index
error
messages
for
bytearrays
,
bytes
,
lists
,
and
tuples
by
adding
'or slices'
.
Added
', not <typename'
for
bytearrays
.
and
tuples
by
adding
'or slices'
.
Added
', not <typename
>
'
for
bytearrays
.
Original
patch
by
Claudiu
Popa
.
-
Issue
#
20179
:
Apply
Argument
Clinic
to
bytes
and
bytearray
.
...
...
Objects/abstract.c
Dosyayı görüntüle @
ec1aa5c2
...
...
@@ -2131,7 +2131,7 @@ PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw)
/* PyObject_Call() must not be called with an exception set,
because it may clear it (directly or indirectly) and so the
caller lo
o
ses its exception */
caller loses its exception */
assert
(
!
PyErr_Occurred
());
call
=
func
->
ob_type
->
tp_call
;
...
...
Objects/methodobject.c
Dosyayı görüntüle @
ec1aa5c2
...
...
@@ -89,7 +89,7 @@ PyCFunction_Call(PyObject *func, PyObject *args, PyObject *kwds)
/* PyCFunction_Call() must not be called with an exception set,
because it may clear it (directly or indirectly) and so the
caller lo
o
ses its exception */
caller loses its exception */
assert
(
!
PyErr_Occurred
());
flags
=
PyCFunction_GET_FLAGS
(
func
)
&
~
(
METH_CLASS
|
METH_STATIC
|
METH_COEXIST
);
...
...
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