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
79ecd762
Kaydet (Commit)
79ecd762
authored
Eyl 29, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9983: warn that urllib and httplib don't perform SSL certificate validation.
üst
c3ed2e7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
http.client.rst
Doc/library/http.client.rst
+6
-6
urllib.request.rst
Doc/library/urllib.request.rst
+4
-0
No files found.
Doc/library/http.client.rst
Dosyayı görüntüle @
79ecd762
...
...
@@ -53,13 +53,13 @@ The module provides the following classes:
.. class:: HTTPSConnection(host, port=None, key_file=None, cert_file=None, strict=None[, timeout[, source_address]])
A subclass of :class:`HTTPConnection` that uses SSL for communication with
secure servers. Default port is ``443``. *key_file* is the name of a PEM
formatted file that contains your private key. *cert_file* is a PEM formatted
certificate chain file.
secure servers. Default port is ``443``. *key_file* is the name of a PEM
formatted file that contains your private key, and *cert_file* is a PEM
formatted certificate chain file; both can be used for authenticating
yourself against the server.
.. note::
This does not do any certificate verification.
.. warning::
This does not do any verification of the server's certificate.
.. versionchanged:: 3.2
*source_address* was added.
...
...
Doc/library/urllib.request.rst
Dosyayı görüntüle @
79ecd762
...
...
@@ -11,6 +11,10 @@ The :mod:`urllib.request` module defines functions and classes which help in
opening URLs (mostly HTTP) in a complex world --- basic and digest
authentication, redirections, cookies and more.
.. warning:: When opening HTTPS (or FTPS) URLs, it is not attempted to
validate the server certificate. Use at your own risk!
The :mod:`urllib.request` module defines the following functions:
...
...
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