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
07fbbfde
Kaydet (Commit)
07fbbfde
authored
Eki 05, 2018
tarafından
Stéphane Wirtel
Kaydeden (comit)
Julien Palard
Eki 05, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34906: Doc: Fix typos (GH-9712)
üst
7a7693e9
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
dis.rst
Doc/library/dis.rst
+1
-1
ssl.rst
Doc/library/ssl.rst
+1
-1
zipapp.rst
Doc/library/zipapp.rst
+1
-1
3.6.rst
Doc/whatsnew/3.6.rst
+1
-1
bdb.py
Lib/bdb.py
+1
-1
_ssl.c
Modules/_ssl.c
+1
-1
No files found.
Doc/library/dis.rst
Dosyayı görüntüle @
07fbbfde
...
...
@@ -149,7 +149,7 @@ operation is being performed, so the intermediate analysis object isn't useful:
.. function:: dis(x=None, *, file=None, depth=None)
Disassemble the *x* object. *x* can denote either a module, a class, a
method, a function, a generator, an asynchronous generator, a co
u
routine,
method, a function, a generator, an asynchronous generator, a coroutine,
a code object, a string of source code or a byte sequence of raw bytecode.
For a module, it disassembles all functions. For a class, it disassembles
all methods (including class and static methods). For a code object or
...
...
Doc/library/ssl.rst
Dosyayı görüntüle @
07fbbfde
...
...
@@ -2658,7 +2658,7 @@ of TLS/SSL. Some new TLS 1.3 features are not yet available.
- TLS 1.3 uses a disjunct set of cipher suites. All AES-GCM and
ChaCha20 cipher suites are enabled by default. The method
:meth:`SSLContext.set_ciphers` cannot enable or disable any TLS 1.3
ciphers yet, but :meth:`SSLContext.get_cipers` returns them.
ciphers yet, but :meth:`SSLContext.get_cip
h
ers` returns them.
- Session tickets are no longer sent as part of the initial handshake and
are handled differently. :attr:`SSLSocket.session` and :class:`SSLSession`
are not compatible with TLS 1.3.
...
...
Doc/library/zipapp.rst
Dosyayı görüntüle @
07fbbfde
...
...
@@ -195,7 +195,7 @@ Pack up a directory into an archive, and run it.
$ python myapp.pyz
<output from myapp>
The same can be done using the :func:`create_archive` functon::
The same can be done using the :func:`create_archive` funct
i
on::
>>> import zipapp
>>> zipapp.create_archive('
myapp
.
pyz
', '
myapp
')
...
...
Doc/whatsnew/3.6.rst
Dosyayı görüntüle @
07fbbfde
...
...
@@ -1623,7 +1623,7 @@ a class variable and should not be set on instances of that class.
<https://github.com/python/typing/pull/280>`_.)
A new :const:`~typing.TYPE_CHECKING` constant that is assumed to be
``True`` by the static type chekers, but is ``False`` at runtime.
``True`` by the static type che
c
kers, but is ``False`` at runtime.
(Contributed by Guido van Rossum in `Github #230
<https://github.com/python/typing/issues/230>`_.)
...
...
Lib/bdb.py
Dosyayı görüntüle @
07fbbfde
...
...
@@ -74,7 +74,7 @@ class Bdb:
return: A function or other code block is about to return.
exception: An exception has occurred.
c_call: A C function is about to be called.
c_return: A C functon has returned.
c_return: A C funct
i
on has returned.
c_exception: A C function has raised an exception.
For the Python events, specialized functions (see the dispatch_*()
...
...
Modules/_ssl.c
Dosyayı görüntüle @
07fbbfde
...
...
@@ -273,7 +273,7 @@ SSL_SESSION_get_ticket_lifetime_hint(const SSL_SESSION *s)
#error "Py_SSL_DEFAULT_CIPHERS 0 needs Py_SSL_DEFAULT_CIPHER_STRING"
#endif
#elif PY_SSL_DEFAULT_CIPHERS == 1
/* Python custom selection of sensible ciper suites
/* Python custom selection of sensible cip
h
er suites
* DEFAULT: OpenSSL's default cipher list. Since 1.0.2 the list is in sensible order.
* !aNULL:!eNULL: really no NULL ciphers
* !MD5:!3DES:!DES:!RC4:!IDEA:!SEED: no weak or broken algorithms on old OpenSSL versions.
...
...
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