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
57204931
Kaydet (Commit)
57204931
authored
May 28, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URL
Patch by Anish Shah and Aatish Neupane.
üst
6ecfab85
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
11 additions
and
11 deletions
+11
-11
fl.rst
Doc/library/fl.rst
+1
-1
ftplib.rst
Doc/library/ftplib.rst
+1
-1
httplib.rst
Doc/library/httplib.rst
+1
-1
urllib.rst
Doc/library/urllib.rst
+4
-4
urllib2.rst
Doc/library/urllib2.rst
+1
-1
urlparse.rst
Doc/library/urlparse.rst
+1
-1
xmlrpclib.rst
Doc/library/xmlrpclib.rst
+2
-2
No files found.
Doc/library/fl.rst
Dosyayı görüntüle @
57204931
...
...
@@ -17,7 +17,7 @@
single: Overmars, Mark
This module provides an interface to the FORMS Library by Mark Overmars. The
source for the library can be retrieved by anonymous
ftp
from host
source for the library can be retrieved by anonymous
FTP
from host
``ftp.cs.ruu.nl``, directory :file:`SGI/FORMS`. It was last tested with version
2.0b.
...
...
Doc/library/ftplib.rst
Dosyayı görüntüle @
57204931
...
...
@@ -16,7 +16,7 @@
This module defines the class :class:`FTP` and a few related items. The
:class:`FTP` class implements the client side of the FTP protocol. You can use
this to write Python programs that perform a variety of automated FTP jobs, such
as mirroring other
ftp
servers. It is also used by the module :mod:`urllib` to
as mirroring other
FTP
servers. It is also used by the module :mod:`urllib` to
handle URLs that use FTP. For more information on FTP (File Transfer Protocol),
see Internet :rfc:`959`.
...
...
Doc/library/httplib.rst
Dosyayı görüntüle @
57204931
...
...
@@ -27,7 +27,7 @@ uses it to handle URLs that use HTTP and HTTPS.
.. seealso::
The `Requests package <http://requests.readthedocs.org/>`_
is recommended for a higher-level
http
client interface.
is recommended for a higher-level
HTTP
client interface.
.. note::
...
...
Doc/library/urllib.rst
Dosyayı görüntüle @
57204931
...
...
@@ -27,7 +27,7 @@ reading, and no seek operations are available.
.. seealso::
The `Requests package <http://requests.readthedocs.org/>`_
is recommended for a higher-level
http
client interface.
is recommended for a higher-level
HTTP
client interface.
.. warning:: When opening HTTPS URLs, it does not attempt to validate the
server certificate. Use at your own risk!
...
...
@@ -118,7 +118,7 @@ High-level interface
causes environmental proxy settings to be used as discussed above. For
example::
# Use http://www.someproxy.com:3128 for
http
proxying
# Use http://www.someproxy.com:3128 for
HTTP
proxying
proxies = {'http': 'http://www.someproxy.com:3128'}
filehandle = urllib.urlopen(some_url, proxies=proxies)
# Don't use any proxies
...
...
@@ -297,8 +297,8 @@ Utility functions
.. note::
urllib also exposes certain utility functions like splittype, splithost and
others parsing
url
into various components. But it is recommended to use
:mod:`urlparse` for parsing
url
s rather than using these functions directly.
others parsing
URL
into various components. But it is recommended to use
:mod:`urlparse` for parsing
URL
s rather than using these functions directly.
Python 3 does not expose these helper functions from :mod:`urllib.parse`
module.
...
...
Doc/library/urllib2.rst
Dosyayı görüntüle @
57204931
...
...
@@ -21,7 +21,7 @@ redirections, cookies and more.
.. seealso::
The `Requests package <http://requests.readthedocs.org/>`_
is recommended for a higher-level
http
client interface.
is recommended for a higher-level
HTTP
client interface.
The :mod:`urllib2` module defines the following functions:
...
...
Doc/library/urlparse.rst
Dosyayı görüntüle @
57204931
...
...
@@ -290,7 +290,7 @@ The :mod:`urlparse` module defines the following functions:
Names (URNs) and Uniform Resource Locators (URLs).
:rfc:`2368` - The mailto URL scheme.
Parsing requirements for mailto
url
schemes.
Parsing requirements for mailto
URL
schemes.
:rfc:`1808` - Relative Uniform Resource Locators
This Request For Comments includes the rules for joining an absolute and a
...
...
Doc/library/xmlrpclib.rst
Dosyayı görüntüle @
57204931
...
...
@@ -36,7 +36,7 @@ between conformable Python objects and XML on the wire.
.. versionchanged:: 2.7.9
For
https
URIs, :mod:`xmlrpclib` now performs all the necessary certificate
For
HTTPS
URIs, :mod:`xmlrpclib` now performs all the necessary certificate
and hostname checks by default.
.. class:: ServerProxy(uri[, transport[, encoding[, verbose[, allow_none[, use_datetime[, context]]]]]])
...
...
@@ -65,7 +65,7 @@ between conformable Python objects and XML on the wire.
portion will be base64-encoded as an HTTP 'Authorization' header, and sent to
the remote server as part of the connection process when invoking an XML-RPC
method. You only need to use this if the remote server requires a Basic
Authentication user and password. If an HTTPS
url
is provided, *context* may
Authentication user and password. If an HTTPS
URL
is provided, *context* may
be :class:`ssl.SSLContext` and configures the SSL settings of the underlying
HTTPS connection.
...
...
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