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
4ad4fb97
Kaydet (Commit)
4ad4fb97
authored
Eki 06, 2012
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge with 3.3
üst
ef08fb1f
fe7b00fb
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
83 additions
and
18 deletions
+83
-18
concurrency.rst
Doc/library/concurrency.rst
+1
-0
concurrent.rst
Doc/library/concurrent.rst
+6
-0
html.rst
Doc/library/html.rst
+7
-0
http.rst
Doc/library/http.rst
+11
-0
internet.rst
Doc/library/internet.rst
+3
-0
markup.rst
Doc/library/markup.rst
+1
-8
urllib.rst
Doc/library/urllib.rst
+9
-0
xml.rst
Doc/library/xml.rst
+29
-0
xmlrpc.rst
Doc/library/xmlrpc.rst
+12
-0
expressions.rst
Doc/reference/expressions.rst
+4
-10
No files found.
Doc/library/concurrency.rst
Dosyayı görüntüle @
4ad4fb97
...
...
@@ -15,6 +15,7 @@ multitasking) Here's an overview:
threading.rst
multiprocessing.rst
concurrent.rst
concurrent.futures.rst
subprocess.rst
sched.rst
...
...
Doc/library/concurrent.rst
0 → 100644
Dosyayı görüntüle @
4ad4fb97
The :mod:`concurrent` package
=============================
Currently, there is only one module in this package:
* :mod:`concurrent.futures` -- Launching parallel tasks
Doc/library/html.rst
Dosyayı görüntüle @
4ad4fb97
...
...
@@ -19,3 +19,10 @@ This module defines utilities to manipulate HTML.
attribute value delimited by quotes, as in ``<a href="...">``.
.. versionadded:: 3.2
--------------
Submodules in the ``html`` package are:
* :mod:`html.parser` -- HTML/XHTML parser with lenient parsing mode
* :mod:`html.entities` -- HTML entity definitions
Doc/library/http.rst
0 → 100644
Dosyayı görüntüle @
4ad4fb97
:mod:`http` --- HTTP modules
============================
``http`` is a package that collects several modules for working with the
HyperText Transfer Protocol:
* :mod:`http.client` is a low-level HTTP protocol client; for high-level URL
opening use :mod:`urllib.request`
* :mod:`http.server` contains basic HTTP server classes based on :mod:`socketserver`
* :mod:`http.cookies` has utilities for implementing state management with cookies
* :mod:`http.cookiejar` provides persistence of cookies
Doc/library/internet.rst
Dosyayı görüntüle @
4ad4fb97
...
...
@@ -23,10 +23,12 @@ is currently supported on most popular platforms. Here is an overview:
cgi.rst
cgitb.rst
wsgiref.rst
urllib.rst
urllib.request.rst
urllib.parse.rst
urllib.error.rst
urllib.robotparser.rst
http.rst
http.client.rst
ftplib.rst
poplib.rst
...
...
@@ -40,6 +42,7 @@ is currently supported on most popular platforms. Here is an overview:
http.server.rst
http.cookies.rst
http.cookiejar.rst
xmlrpc.rst
xmlrpc.client.rst
xmlrpc.server.rst
ipaddress.rst
Doc/library/markup.rst
Dosyayı görüntüle @
4ad4fb97
...
...
@@ -9,20 +9,13 @@ data markup. This includes modules to work with the Standard Generalized Markup
Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces
for working with the Extensible Markup Language (XML).
It is important to note that modules in the :mod:`xml` package require that
there be at least one SAX-compliant XML parser available. The Expat parser is
included with Python, so the :mod:`xml.parsers.expat` module will always be
available.
The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the
definition of the Python bindings for the DOM and SAX interfaces.
.. toctree::
html.rst
html.parser.rst
html.entities.rst
xml.rst
xml.etree.elementtree.rst
xml.dom.rst
xml.dom.minidom.rst
...
...
Doc/library/urllib.rst
0 → 100644
Dosyayı görüntüle @
4ad4fb97
:mod:`urllib` --- URL handling modules
======================================
``urllib`` is a package that collects several modules for working with URLs:
* :mod:`urllib.request` for opening and reading URLs
* :mod:`urllib.error` containing the exceptions raised by :mod:`urllib.request`
* :mod:`urllib.parse` for parsing URLs
* :mod:`urllib.robotparser` for parsing ``robots.txt`` files
Doc/library/xml.rst
0 → 100644
Dosyayı görüntüle @
4ad4fb97
.. _xml:
XML Processing Modules
======================
Python's interfaces for processing XML are grouped in the ``xml`` package.
It is important to note that modules in the :mod:`xml` package require that
there be at least one SAX-compliant XML parser available. The Expat parser is
included with Python, so the :mod:`xml.parsers.expat` module will always be
available.
The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the
definition of the Python bindings for the DOM and SAX interfaces.
The XML handling submodules are:
* :mod:`xml.etree.ElementTree`: the ElementTree API, a simple and lightweight
..
* :mod:`xml.dom`: the DOM API definition
* :mod:`xml.dom.minidom`: a lightweight DOM implementation
* :mod:`xml.dom.pulldom`: support for building partial DOM trees
..
* :mod:`xml.sax`: SAX2 base classes and convenience functions
* :mod:`xml.parsers.expat`: the Expat parser binding
Doc/library/xmlrpc.rst
0 → 100644
Dosyayı görüntüle @
4ad4fb97
:mod:`xmlrpc` --- XMLRPC server and client modules
==================================================
XML-RPC is a Remote Procedure Call method that uses XML passed via HTTP as a
transport. With it, a client can call methods with parameters on a remote
server (the server is named by a URI) and get back structured data.
``xmlrpc`` is a package that collects server and client modules implementing
XML-RPC. The modules are:
* :mod:`xmlrpc.client`
* :mod:`xmlrpc.server`
Doc/reference/expressions.rst
Dosyayı görüntüle @
4ad4fb97
...
...
@@ -1094,16 +1094,10 @@ Comparison of objects of the same type depends on the type:
another one is made arbitrarily but consistently within one execution of a
program.
Comparison of objects of the differing types depends on whether either
of the types provide explicit support for the comparison. Most numeric types
can be compared with one another, but comparisons of :class:`float` and
:class:`Decimal` are not supported to avoid the inevitable confusion arising
from representation issues such as ``float('1.1')`` being inexactly represented
and therefore not exactly equal to ``Decimal('1.1')`` which is. When
cross-type comparison is not supported, the comparison method returns
``NotImplemented``. This can create the illusion of non-transitivity between
supported cross-type comparisons and unsupported comparisons. For example,
``Decimal(2) == 2`` and ``2 == float(2)`` but ``Decimal(2) != float(2)``.
Comparison of objects of the differing types depends on whether either of the
types provide explicit support for the comparison. Most numeric types can be
compared with one another. When cross-type comparison is not supported, the
comparison method returns ``NotImplemented``.
.. _membership-test-details:
...
...
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