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
33ad28b6
Kaydet (Commit)
33ad28b6
authored
Agu 31, 2004
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use multi-line import
üst
3294e9d2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
26 deletions
+26
-26
DocXMLRPCServer.py
Lib/DocXMLRPCServer.py
+4
-4
_LWPCookieJar.py
Lib/_LWPCookieJar.py
+3
-3
_MozillaCookieJar.py
Lib/_MozillaCookieJar.py
+2
-2
os.py
Lib/os.py
+2
-2
test_optparse.py
Lib/test/test_optparse.py
+4
-4
urllib2.py
Lib/urllib2.py
+3
-3
weakref.py
Lib/weakref.py
+8
-8
No files found.
Lib/DocXMLRPCServer.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -16,10 +16,10 @@ import types
import
re
import
sys
from
SimpleXMLRPCServer
import
SimpleXMLRPCServer
,
\
SimpleXMLRPCRequestHandler
,
\
CGIXMLRPCRequestHandler
,
\
resolve_dotted_attribute
from
SimpleXMLRPCServer
import
(
SimpleXMLRPCServer
,
SimpleXMLRPCRequestHandler
,
CGIXMLRPCRequestHandler
,
resolve_dotted_attribute
)
class
ServerHTMLDoc
(
pydoc
.
HTMLDoc
):
"""Class used to generate pydoc HTML document for a server"""
...
...
Lib/_LWPCookieJar.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -12,9 +12,9 @@ libwww-perl, I hope.
"""
import
time
,
re
,
logging
from
cookielib
import
reraise_unmasked_exceptions
,
FileCookieJar
,
Cookie
,
\
MISSING_FILENAME_TEXT
,
join_header_words
,
split_header_words
,
\
iso2time
,
time2isoz
from
cookielib
import
(
reraise_unmasked_exceptions
,
FileCookieJar
,
Cookie
,
MISSING_FILENAME_TEXT
,
join_header_words
,
split_header_words
,
iso2time
,
time2isoz
)
def
lwp_cookie_str
(
cookie
):
"""Return string representation of Cookie in an the LWP cookie file format.
...
...
Lib/_MozillaCookieJar.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -2,8 +2,8 @@
import
re
,
time
,
logging
from
cookielib
import
reraise_unmasked_exceptions
,
FileCookieJar
,
Cookie
,
\
MISSING_FILENAME_TEXT
from
cookielib
import
(
reraise_unmasked_exceptions
,
FileCookieJar
,
Cookie
,
MISSING_FILENAME_TEXT
)
class
MozillaCookieJar
(
FileCookieJar
):
"""
...
...
Lib/os.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -130,8 +130,8 @@ else:
raise
ImportError
,
'no os specific module found'
sys
.
modules
[
'os.path'
]
=
path
from
os.path
import
curdir
,
pardir
,
sep
,
pathsep
,
defpath
,
extsep
,
altsep
,
\
devnull
from
os.path
import
(
curdir
,
pardir
,
sep
,
pathsep
,
defpath
,
extsep
,
altsep
,
devnull
)
del
_names
...
...
Lib/test/test_optparse.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -17,10 +17,10 @@ from cStringIO import StringIO
from
pprint
import
pprint
from
test
import
test_support
from
optparse
import
make_option
,
Option
,
IndentedHelpFormatter
,
\
TitledHelpFormatter
,
OptionParser
,
OptionContainer
,
OptionGroup
,
\
SUPPRESS_HELP
,
SUPPRESS_USAGE
,
OptionError
,
OptionConflictError
,
\
BadOptionError
,
OptionValueError
,
_match_abbrev
from
optparse
import
(
make_option
,
Option
,
IndentedHelpFormatter
,
TitledHelpFormatter
,
OptionParser
,
OptionContainer
,
OptionGroup
,
SUPPRESS_HELP
,
SUPPRESS_USAGE
,
OptionError
,
OptionConflictError
,
BadOptionError
,
OptionValueError
,
_match_abbrev
)
class
BaseTest
(
unittest
.
TestCase
):
def
assertParseOK
(
self
,
args
,
expected_opts
,
expected_positional_args
):
...
...
Lib/urllib2.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -114,9 +114,9 @@ except ImportError:
from
StringIO
import
StringIO
# not sure how many of these need to be gotten rid of
from
urllib
import
unwrap
,
unquote
,
splittype
,
splithost
,
\
addinfourl
,
splitport
,
splitgophertype
,
splitquery
,
\
splitattr
,
ftpwrapper
,
noheaders
,
splituser
,
splitpasswd
,
splitvalue
from
urllib
import
(
unwrap
,
unquote
,
splittype
,
splithost
,
addinfourl
,
splitport
,
splitgophertype
,
splitquery
,
splitattr
,
ftpwrapper
,
noheaders
,
splituser
,
splitpasswd
,
splitvalue
)
# support for FileHandler, proxies via environment variables
from
urllib
import
localhost
,
url2pathname
,
getproxies
...
...
Lib/weakref.py
Dosyayı görüntüle @
33ad28b6
...
...
@@ -11,14 +11,14 @@ http://python.sourceforge.net/peps/pep-0205.html
import
UserDict
from
_weakref
import
\
getweakrefcount
,
\
getweakrefs
,
\
ref
,
\
proxy
,
\
CallableProxyType
,
\
ProxyType
,
\
ReferenceType
from
_weakref
import
(
getweakrefcount
,
getweakrefs
,
ref
,
proxy
,
CallableProxyType
,
ProxyType
,
ReferenceType
)
from
exceptions
import
ReferenceError
...
...
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