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
062d2b52
Kaydet (Commit)
062d2b52
authored
Ara 19, 2009
tarafından
Ezio Melotti
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#7388: "python".capitalize() in the Doc
üst
98a24def
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
26 additions
and
26 deletions
+26
-26
init.rst
Doc/c-api/init.rst
+2
-2
setupscript.rst
Doc/distutils/setupscript.rst
+1
-1
extending.rst
Doc/faq/extending.rst
+1
-1
library.rst
Doc/faq/library.rst
+1
-1
windows.rst
Doc/faq/windows.rst
+1
-1
collections.rst
Doc/library/collections.rst
+1
-1
doctest.rst
Doc/library/doctest.rst
+1
-1
hmac.rst
Doc/library/hmac.rst
+1
-1
hotshot.rst
Doc/library/hotshot.rst
+1
-1
logging.rst
Doc/library/logging.rst
+1
-1
multiprocessing.rst
Doc/library/multiprocessing.rst
+1
-1
pdb.rst
Doc/library/pdb.rst
+1
-1
smtplib.rst
Doc/library/smtplib.rst
+1
-1
socket.rst
Doc/library/socket.rst
+1
-1
stdtypes.rst
Doc/library/stdtypes.rst
+2
-2
turtle.rst
Doc/library/turtle.rst
+1
-1
unittest.rst
Doc/library/unittest.rst
+2
-2
license.rst
Doc/license.rst
+1
-1
stdlib.rst
Doc/tutorial/stdlib.rst
+1
-1
stdlib2.rst
Doc/tutorial/stdlib2.rst
+1
-1
unix.rst
Doc/using/unix.rst
+2
-2
windows.rst
Doc/using/windows.rst
+1
-1
No files found.
Doc/c-api/init.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -821,7 +821,7 @@ pointer and a void argument.
.. index:: single: setcheckinterval() (in module sys)
Every check interval, when the global interpreter lock is released and
reacquired,
p
ython will also call any such provided functions. This can be used
reacquired,
P
ython will also call any such provided functions. This can be used
for example by asynchronous IO handlers. The notification can be scheduled from
a worker thread and the actual call than made at the earliest convenience by the
main thread where it has possession of the global interpreter lock and can
...
...
@@ -839,7 +839,7 @@ perform any Python API calls.
exception. The notification function won't be interrupted to perform another
asynchronous notification recursively, but it can still be interrupted to
switch threads if the global interpreter lock is released, for example, if it
calls back into
p
ython code.
calls back into
P
ython code.
This function returns 0 on success in which case the notification has been
scheduled. Otherwise, for example if the notification buffer is full, it
...
...
Doc/distutils/setupscript.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -649,7 +649,7 @@ information is sometimes used to indicate sub-releases. These are
1.0.1a2
the second alpha release of the first patch version of 1.0
:option:`classifiers` are specified in a
p
ython list::
:option:`classifiers` are specified in a
P
ython list::
setup(...,
classifiers=[
...
...
Doc/faq/extending.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -432,7 +432,7 @@ How do I find undefined g++ symbols __builtin_new or __pure_virtual?
--------------------------------------------------------------------
To dynamically load g++ extension modules, you must recompile Python, relink it
using g++ (change LINKCC in the
p
ython Modules Makefile), and link your
using g++ (change LINKCC in the
P
ython Modules Makefile), and link your
extension module using g++ (e.g., ``g++ -shared -o mymodule.so mymodule.o``).
...
...
Doc/faq/library.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -61,7 +61,7 @@ interpreter is installed on your platform.
If you would like the script to be independent of where the Python interpreter
lives, you can use the "env" program. Almost all Unix variants support the
following, assuming the
p
ython interpreter is in a directory on the user's
following, assuming the
P
ython interpreter is in a directory on the user's
$PATH::
#!/usr/bin/env python
...
...
Doc/faq/windows.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -204,7 +204,7 @@ The important things to remember are:
for developing code by experiment.
How do I make
p
ython scripts executable?
How do I make
P
ython scripts executable?
----------------------------------------
On Windows 2000, the standard Python installer already associates the .py
...
...
Doc/library/collections.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -491,7 +491,7 @@ added elements by appending to the right and popping to the left::
yield s / float(n)
The :meth:`rotate` method provides a way to implement :class:`deque` slicing and
deletion. For example, a pure
p
ython implementation of ``del d[n]`` relies on
deletion. For example, a pure
P
ython implementation of ``del d[n]`` relies on
the :meth:`rotate` method to position elements to be popped::
def delete_nth(d, n):
...
...
Doc/library/doctest.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -1132,7 +1132,7 @@ capabilities, then you should use the advanced API.
The advanced API revolves around two container classes, which are used to store
the interactive examples extracted from doctest cases:
* :class:`Example`: A single
p
ython :term:`statement`, paired with its expected
* :class:`Example`: A single
P
ython :term:`statement`, paired with its expected
output.
* :class:`DocTest`: A collection of :class:`Example`\ s, typically extracted
...
...
Doc/library/hmac.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -57,5 +57,5 @@ An HMAC object has the following methods:
.. seealso::
Module :mod:`hashlib`
The
p
ython module providing secure hash functions.
The
P
ython module providing secure hash functions.
Doc/library/hotshot.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -127,7 +127,7 @@ objects.
Example Usage
-------------
Note that this example runs the
p
ython "benchmark" pystones. It can take some
Note that this example runs the
P
ython "benchmark" pystones. It can take some
time to run, and will produce large output files. ::
>>> import hotshot, hotshot.stats, test.pystone
...
...
Doc/library/logging.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -2256,7 +2256,7 @@ A Formatter can be initialized with a format string which makes use of knowledge
of the :class:`LogRecord` attributes - such as the default value mentioned above
making use of the fact that the user'
s
message
and
arguments
are
pre
-
formatted
into
a
:
class
:`
LogRecord
`
's *message* attribute. This format string contains
standard
p
ython %-style mapping keys. See section :ref:`string-formatting`
standard
P
ython %-style mapping keys. See section :ref:`string-formatting`
for more information on string formatting.
Currently, the useful mapping keys in a :class:`LogRecord` are:
...
...
Doc/library/multiprocessing.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -688,7 +688,7 @@ Miscellaneous
..
function
::
set_executable
()
Sets
the
path
of
the
p
ython
interpreter
to
use
when
starting
a
child
process
.
Sets
the
path
of
the
P
ython
interpreter
to
use
when
starting
a
child
process
.
(
By
default
:
data
:`
sys
.
executable
`
is
used
).
Embedders
will
probably
need
to
do
some
thing
like
::
...
...
Doc/library/pdb.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -382,7 +382,7 @@ unalias *name*
(Pdb)
run [*args* ...]
Restart the debugged
p
ython program. If an argument is supplied, it is split
Restart the debugged
P
ython program. If an argument is supplied, it is split
with "shlex" and the result is used as the new sys.argv. History, breakpoints,
actions and debugger options are preserved. "restart" is an alias for "run".
...
...
Doc/library/smtplib.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -271,7 +271,7 @@ An :class:`SMTP` instance has the following methods:
.. versionchanged:: 2.6
:exc:`RuntimeError`
SSL/TLS support is not available to your
p
ython interpreter.
SSL/TLS support is not available to your
P
ython interpreter.
.. method:: SMTP.sendmail(from_addr, to_addrs, msg[, mail_options, rcpt_options])
...
...
Doc/library/socket.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -751,7 +751,7 @@ Note that the :meth:`connect` operation is subject to the timeout setting, and
in general it is recommended to call :meth:`settimeout` before calling
:meth:`connect` or pass a timeout parameter to :meth:`create_connection`.
The system network stack may return a connection timeout error
of its own regardless of any
p
ython socket timeout setting.
of its own regardless of any
P
ython socket timeout setting.
.. method:: socket.setsockopt(level, optname, value)
...
...
Doc/library/stdtypes.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -1397,10 +1397,10 @@ The conversion types are:
| ``'c'`` | Single character (accepts integer or single | |
| | character string). | |
+------------+-----------------------------------------------------+-------+
| ``'r'`` | String (converts any
p
ython object using | \(5) |
| ``'r'`` | String (converts any
P
ython object using | \(5) |
| | :func:`repr`). | |
+------------+-----------------------------------------------------+-------+
| ``'s'`` | String (converts any
p
ython object using | \(6) |
| ``'s'`` | String (converts any
P
ython object using | \(6) |
| | :func:`str`). | |
+------------+-----------------------------------------------------+-------+
| ``'%'`` | No argument is converted, results in a ``'%'`` | |
...
...
Doc/library/turtle.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -36,7 +36,7 @@ the module from within IDLE run with the ``-n`` switch.
The turtle module provides turtle graphics primitives, in both object-oriented
and procedure-oriented ways. Because it uses :mod:`Tkinter` for the underlying
graphics, it needs a version of
p
ython installed with Tk support.
graphics, it needs a version of
P
ython installed with Tk support.
The object-oriented interface uses essentially two+two classes:
...
...
Doc/library/unittest.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -199,7 +199,7 @@ qualified class or method names.
You can run tests with more detail (higher verbosity) by passing in the -v flag::
python-m unittest -v test_module
python
-m unittest -v test_module
For a list of all the command line options::
...
...
@@ -1600,7 +1600,7 @@ name then the package :file:`__init__.py` will be checked for ``load_tests``.
.. note::
The default pattern is 'test*.py'. This matches all
p
ython files
The default pattern is 'test*.py'. This matches all
P
ython files
that start with 'test' but *won't* match any test directories.
A pattern like 'test*' will match test packages as well as
...
...
Doc/license.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -624,7 +624,7 @@ The :mod:`uu` module contains the following notice::
- Use binascii module to do the actual line-by-line conversion
between ascii and binary. This results in a 1000-fold speedup. The C
version is still 5 times faster, though.
- Arguments more compliant with
p
ython standard
- Arguments more compliant with
P
ython standard
XML Remote Procedure Calls
...
...
Doc/tutorial/stdlib.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -306,7 +306,7 @@ sophisticated and robust capabilities of its larger packages. For example:
* The :mod:`xml.dom` and :mod:`xml.sax` packages provide robust support for
parsing this popular data interchange format. Likewise, the :mod:`csv` module
supports direct reads and writes in a common database format. Together, these
modules and packages greatly simplify data interchange between
p
ython
modules and packages greatly simplify data interchange between
P
ython
applications and other tools.
* Internationalization is supported by a number of modules including
...
...
Doc/tutorial/stdlib2.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -289,7 +289,7 @@ The :mod:`array` module provides an :class:`array()` object that is like a list
that stores only homogeneous data and stores it more compactly. The following
example shows an array of numbers stored as two byte unsigned binary numbers
(typecode ``"H"``) rather than the usual 16 bytes per entry for regular lists of
p
ython int objects::
P
ython int objects::
>>> from array import array
>>> a = array('H', [4000, 10, 700, 22222])
...
...
Doc/using/unix.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -131,14 +131,14 @@ which searches for the Python interpreter in the whole :envvar:`PATH`. However,
some
Unices
may
not
have
the
:
program
:`
env
`
command
,
so
you
may
need
to
hardcode
``/
usr
/
bin
/
python
``
as
the
interpreter
path
.
To
use
shell
commands
in
your
p
ython
scripts
,
look
at
the
:
mod
:`
subprocess
`
module
.
To
use
shell
commands
in
your
P
ython
scripts
,
look
at
the
:
mod
:`
subprocess
`
module
.
Editors
=======
Vim
and
Emacs
are
excellent
editors
which
support
Python
very
well
.
For
more
information
on
how
to
code
in
p
ython
in
these
editors
,
look
at
:
information
on
how
to
code
in
P
ython
in
these
editors
,
look
at
:
*
http
://
www
.
vim
.
org
/
scripts
/
script
.
php
?
script_id
=
790
*
http
://
sourceforge
.
net
/
projects
/
python
-
mode
...
...
Doc/using/windows.rst
Dosyayı görüntüle @
062d2b52
...
...
@@ -71,7 +71,7 @@ key features:
`Enthought Python Distribution <http://www.enthought.com/products/epd.php>`_
Popular modules (such as PyWin32) with their respective documentation, tool
suite for building extensible
p
ython applications
suite for building extensible
P
ython applications
Notice that these packages are likely to install *older* versions of Python.
...
...
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