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
0f8f784a
Kaydet (Commit)
0f8f784a
authored
Ara 01, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed duplicated words in in comments and docs.
üst
d862db0d
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
hashlib.py
Lib/hashlib.py
+1
-1
test_docxmlrpc.py
Lib/test/test_docxmlrpc.py
+1
-1
posixmodule.c
Modules/posixmodule.c
+1
-1
pystrtod.c
Python/pystrtod.c
+1
-1
random.c
Python/random.c
+1
-1
thread.c
Python/thread.c
+1
-1
No files found.
Lib/hashlib.py
Dosyayı görüntüle @
0f8f784a
...
...
@@ -187,7 +187,7 @@ except ImportError:
def
prf
(
msg
,
inner
=
inner
,
outer
=
outer
):
# PBKDF2_HMAC uses the password as key. We can re-use the same
# digest objects and
and
just update copies to skip initialization.
# digest objects and just update copies to skip initialization.
icpy
=
inner
.
copy
()
ocpy
=
outer
.
copy
()
icpy
.
update
(
msg
)
...
...
Lib/test/test_docxmlrpc.py
Dosyayı görüntüle @
0f8f784a
...
...
@@ -10,7 +10,7 @@ import unittest
PORT
=
None
def
make_request_and_skipIf
(
condition
,
reason
):
# If we skip the test, we have to make a request because
the
# If we skip the test, we have to make a request because
# the server created in setUp blocks expecting one to come in.
if
not
condition
:
return
lambda
func
:
func
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
0f8f784a
...
...
@@ -8496,7 +8496,7 @@ posix_sysconf(PyObject *self, PyObject *args)
/* This code is used to ensure that the tables of configuration value names
* are in sorted order as required by conv_confname(), and also to build
the
* are in sorted order as required by conv_confname(), and also to build
* the exported dictionaries that are used to publish information about the
* names available on the host platform.
*
...
...
Python/pystrtod.c
Dosyayı görüntüle @
0f8f784a
...
...
@@ -324,7 +324,7 @@ PyOS_ascii_atof(const char *nptr)
On overflow (e.g., when trying to convert '1e500' on an IEEE 754 machine),
if overflow_exception is NULL then +-Py_HUGE_VAL is returned, and no Python
exception is raised. Otherwise, overflow_exception should point to
a
exception is raised. Otherwise, overflow_exception should point to
a Python exception, this exception will be raised, -1.0 will be returned,
and *endptr will point just past the end of the converted value.
...
...
Python/random.c
Dosyayı görüntüle @
0f8f784a
...
...
@@ -274,7 +274,7 @@ lcg_urandom(unsigned int x0, unsigned char *buffer, size_t size)
}
/* Fill buffer with size pseudo-random bytes from the operating system random
number generator (RNG). It is suitable for
for
most cryptographic purposes
number generator (RNG). It is suitable for most cryptographic purposes
except long living private keys for asymmetric encryption.
Return 0 on success, raise an exception and return -1 on error. */
...
...
Python/thread.c
Dosyayı görüntüle @
0f8f784a
...
...
@@ -271,7 +271,7 @@ find_key(int key, void *value)
if
(
p
->
id
==
id
&&
p
->
key
==
key
)
goto
Done
;
/* Sanity check. These states should never happen but if
* they do we must abort. Otherwise we'll end up spinning
in
* they do we must abort. Otherwise we'll end up spinning
* in a tight loop with the lock held. A similar check is done
* in pystate.c tstate_delete_common(). */
if
(
p
==
prev_p
)
...
...
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