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
b712873a
Kaydet (Commit)
b712873a
authored
Ara 24, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Removed spaces before colons and semicolons.
üst
610f84af
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
15 additions
and
16 deletions
+15
-16
programming.rst
Doc/faq/programming.rst
+1
-1
windows.rst
Doc/faq/windows.rst
+1
-1
logging-cookbook.rst
Doc/howto/logging-cookbook.rst
+0
-1
urllib2.rst
Doc/howto/urllib2.rst
+3
-3
ctypes.rst
Doc/library/ctypes.rst
+1
-1
rexec.rst
Doc/library/rexec.rst
+1
-1
simplexmlrpcserver.rst
Doc/library/simplexmlrpcserver.rst
+1
-1
telnetlib.rst
Doc/library/telnetlib.rst
+1
-1
tkinter.rst
Doc/library/tkinter.rst
+1
-1
2.4.rst
Doc/whatsnew/2.4.rst
+1
-1
2.5.rst
Doc/whatsnew/2.5.rst
+1
-1
2.6.rst
Doc/whatsnew/2.6.rst
+3
-3
No files found.
Doc/faq/programming.rst
Dosyayı görüntüle @
b712873a
...
@@ -910,7 +910,7 @@ ability, try converting the string to a list or use the array module::
...
@@ -910,7 +910,7 @@ ability, try converting the string to a list or use the array module::
>>> a = array.array('c', s)
>>> a = array.array('c', s)
>>> print a
>>> print a
array('c', 'Hello, world')
array('c', 'Hello, world')
>>> a[0] = 'y'
; print a
>>> a[0] = 'y'; print a
array('c', 'yello, world')
array('c', 'yello, world')
>>> a.tostring()
>>> a.tostring()
'yello, world'
'yello, world'
...
...
Doc/faq/windows.rst
Dosyayı görüntüle @
b712873a
...
@@ -243,7 +243,7 @@ Embedding the Python interpreter in a Windows app can be summarized as follows:
...
@@ -243,7 +243,7 @@ Embedding the Python interpreter in a Windows app can be summarized as follows:
...
...
Py_Initialize(); // Initialize Python.
Py_Initialize(); // Initialize Python.
initmyAppc(); // Initialize (import) the helper class.
initmyAppc(); // Initialize (import) the helper class.
PyRun_SimpleString("import myApp")
; // Import the shadow class.
PyRun_SimpleString("import myApp"); // Import the shadow class.
5. There are two problems with Python's C API which will become apparent if you
5. There are two problems with Python's C API which will become apparent if you
use a compiler other than MSVC, the compiler used to build pythonNN.dll.
use a compiler other than MSVC, the compiler used to build pythonNN.dll.
...
...
Doc/howto/logging-cookbook.rst
Dosyayı görüntüle @
b712873a
...
@@ -834,4 +834,3 @@ When the above script is run, it prints::
...
@@ -834,4 +834,3 @@ When the above script is run, it prints::
Note that the order of items might be different according to the version of
Note that the order of items might be different according to the version of
Python used.
Python used.
Doc/howto/urllib2.rst
Dosyayı görüntüle @
b712873a
...
@@ -18,7 +18,7 @@ Introduction
...
@@ -18,7 +18,7 @@ Introduction
.. sidebar:: Related Articles
.. sidebar:: Related Articles
You may also find useful the following article on fetching web resources
You may also find useful the following article on fetching web resources
with Python
:
with Python:
* `Basic Authentication <http://www.voidspace.org.uk/python/articles/authentication.shtml>`_
* `Basic Authentication <http://www.voidspace.org.uk/python/articles/authentication.shtml>`_
...
@@ -439,7 +439,7 @@ Authentication Tutorial
...
@@ -439,7 +439,7 @@ Authentication Tutorial
When authentication is required, the server sends a header (as well as the 401
When authentication is required, the server sends a header (as well as the 401
error code) requesting authentication. This specifies the authentication scheme
error code) requesting authentication. This specifies the authentication scheme
and a 'realm'. The header looks like
: ``WWW-Authenticate: SCHEME
and a 'realm'. The header looks like: ``WWW-Authenticate: SCHEME
realm="REALM"``.
realm="REALM"``.
e.g. ::
e.g. ::
...
@@ -511,7 +511,7 @@ the ``ProxyHandler``, which is part of the normal handler chain when a proxy
...
@@ -511,7 +511,7 @@ the ``ProxyHandler``, which is part of the normal handler chain when a proxy
setting is detected. Normally that's a good thing, but there are occasions
setting is detected. Normally that's a good thing, but there are occasions
when it may not be helpful [#]_. One way to do this is to setup our own
when it may not be helpful [#]_. One way to do this is to setup our own
``ProxyHandler``, with no proxies defined. This is done using similar steps to
``ProxyHandler``, with no proxies defined. This is done using similar steps to
setting up a `Basic Authentication`_ handler
: ::
setting up a `Basic Authentication`_ handler: ::
>>> proxy_support = urllib2.ProxyHandler({})
>>> proxy_support = urllib2.ProxyHandler({})
>>> opener = urllib2.build_opener(proxy_support)
>>> opener = urllib2.build_opener(proxy_support)
...
...
Doc/library/ctypes.rst
Dosyayı görüntüle @
b712873a
...
@@ -215,7 +215,7 @@ more about :mod:`ctypes` data types.
...
@@ -215,7 +215,7 @@ more about :mod:`ctypes` data types.
Fundamental data types
Fundamental data types
^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^
:mod:`ctypes` defines a number of primitive C compatible data types
:
:mod:`ctypes` defines a number of primitive C compatible data types:
+----------------------+------------------------------------------+----------------------------+
+----------------------+------------------------------------------+----------------------------+
| ctypes type | C type | Python type |
| ctypes type | C type | Python type |
...
...
Doc/library/rexec.rst
Dosyayı görüntüle @
b712873a
...
@@ -270,7 +270,7 @@ Let us say that we want a slightly more relaxed policy than the standard
...
@@ -270,7 +270,7 @@ Let us say that we want a slightly more relaxed policy than the standard
if mode in ('r', 'rb'):
if mode in ('r', 'rb'):
pass
pass
elif mode in ('w', 'wb', 'a', 'ab'):
elif mode in ('w', 'wb', 'a', 'ab'):
# check filename
: must begin with /tmp/
# check filename: must begin with /tmp/
if file[:5]!='/tmp/':
if file[:5]!='/tmp/':
raise IOError("can't write outside /tmp")
raise IOError("can't write outside /tmp")
elif (string.find(file, '/../') >= 0 or
elif (string.find(file, '/../') >= 0 or
...
...
Doc/library/simplexmlrpcserver.rst
Dosyayı görüntüle @
b712873a
...
@@ -247,7 +247,7 @@ requests sent to Python CGI scripts.
...
@@ -247,7 +247,7 @@ requests sent to Python CGI scripts.
Example::
Example::
class MyFuncs:
class MyFuncs:
def div(self, x, y)
: return x // y
def div(self, x, y): return x // y
handler = CGIXMLRPCRequestHandler()
handler = CGIXMLRPCRequestHandler()
...
...
Doc/library/telnetlib.rst
Dosyayı görüntüle @
b712873a
...
@@ -208,7 +208,7 @@ Telnet Objects
...
@@ -208,7 +208,7 @@ Telnet Objects
.. method:: Telnet.set_option_negotiation_callback(callback)
.. method:: Telnet.set_option_negotiation_callback(callback)
Each time a telnet option is read on the input flow, this *callback* (if set) is
Each time a telnet option is read on the input flow, this *callback* (if set) is
called with the following parameters
: callback(telnet socket, command
called with the following parameters: callback(telnet socket, command
(DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
(DO/DONT/WILL/WONT), option). No other action is done afterwards by telnetlib.
...
...
Doc/library/tkinter.rst
Dosyayı görüntüle @
b712873a
...
@@ -452,7 +452,7 @@ back will contain the name of the synonym and the "real" option (such as
...
@@ -452,7 +452,7 @@ back will contain the name of the synonym and the "real" option (such as
Example::
Example::
>>> print fred.config()
>>> print fred.config()
{'relief'
: ('relief', 'relief', 'Relief', 'raised', 'groove')}
{'relief': ('relief', 'relief', 'Relief', 'raised', 'groove')}
Of course, the dictionary printed will include all the options available and
Of course, the dictionary printed will include all the options available and
their values. This is meant only as an example.
their values. This is meant only as an example.
...
...
Doc/whatsnew/2.4.rst
Dosyayı görüntüle @
b712873a
...
@@ -846,7 +846,7 @@ Here are all of the changes that Python 2.4 makes to the core Python language.
...
@@ -846,7 +846,7 @@ Here are all of the changes that Python 2.4 makes to the core Python language.
['A', 'b', 'c', 'D']
['A', 'b', 'c', 'D']
Finally, the *reverse* parameter takes a Boolean value. If the value is true,
Finally, the *reverse* parameter takes a Boolean value. If the value is true,
the list will be sorted into reverse order. Instead of ``L.sort()
;
the list will be sorted into reverse order. Instead of ``L.sort();
L.reverse()``, you can now write ``L.sort(reverse=True)``.
L.reverse()``, you can now write ``L.sort(reverse=True)``.
The results of sorting are now guaranteed to be stable. This means that two
The results of sorting are now guaranteed to be stable. This means that two
...
...
Doc/whatsnew/2.5.rst
Dosyayı görüntüle @
b712873a
...
@@ -286,7 +286,7 @@ Python's standard :mod:`string` module? There's no clean way to ignore
...
@@ -286,7 +286,7 @@ Python's standard :mod:`string` module? There's no clean way to ignore
:mod:`pkg.string` and look for the standard module; generally you had to look at
:mod:`pkg.string` and look for the standard module; generally you had to look at
the contents of ``sys.modules``, which is slightly unclean. Holger Krekel's
the contents of ``sys.modules``, which is slightly unclean. Holger Krekel's
:mod:`py.std` package provides a tidier way to perform imports from the standard
:mod:`py.std` package provides a tidier way to perform imports from the standard
library, ``import py
; py.std.string.join()``, but that package isn't available
library, ``import py; py.std.string.join()``, but that package isn't available
on all Python installations.
on all Python installations.
Reading code which relies on relative imports is also less clear, because a
Reading code which relies on relative imports is also less clear, because a
...
...
Doc/whatsnew/2.6.rst
Dosyayı görüntüle @
b712873a
...
@@ -1887,7 +1887,7 @@ changes, or look through the Subversion logs for all the details.
...
@@ -1887,7 +1887,7 @@ changes, or look through the Subversion logs for all the details.
>>> dq=deque(maxlen=3)
>>> dq=deque(maxlen=3)
>>> dq
>>> dq
deque([], maxlen=3)
deque([], maxlen=3)
>>> dq.append(1)
; dq.append(2)
; dq.append(3)
>>> dq.append(1)
; dq.append(2)
; dq.append(3)
>>> dq
>>> dq
deque([1, 2, 3], maxlen=3)
deque([1, 2, 3], maxlen=3)
>>> dq.append(4)
>>> dq.append(4)
...
@@ -2779,12 +2779,12 @@ http://www.json.org.
...
@@ -2779,12 +2779,12 @@ http://www.json.org.
types
.
The
following
example
encodes
and
decodes
a
dictionary
::
types
.
The
following
example
encodes
and
decodes
a
dictionary
::
>>>
import
json
>>>
import
json
>>>
data
=
{
"spam"
:
"foo"
,
"parrot"
:
42
}
>>>
data
=
{
"spam"
:
"foo"
,
"parrot"
:
42
}
>>>
in_json
=
json
.
dumps
(
data
)
#
Encode
the
data
>>>
in_json
=
json
.
dumps
(
data
)
#
Encode
the
data
>>>
in_json
>>>
in_json
'{"parrot": 42, "spam": "foo"}'
'{"parrot": 42, "spam": "foo"}'
>>>
json
.
loads
(
in_json
)
#
Decode
into
a
Python
object
>>>
json
.
loads
(
in_json
)
#
Decode
into
a
Python
object
{
"spam"
:
"foo"
,
"parrot"
:
42
}
{
"spam"
:
"foo"
,
"parrot"
:
42
}
It
's also possible to write your own decoders and encoders to support
It
's also possible to write your own decoders and encoders to support
more types. Pretty-printing of the JSON strings is also supported.
more types. Pretty-printing of the JSON strings is also supported.
...
...
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