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
821d0f8b
Kaydet (Commit)
821d0f8b
authored
Şub 16, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
no 2.3 compat in the py3k lib #3676
üst
b7851694
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
11 deletions
+1
-11
modulefinder.py
Lib/modulefinder.py
+1
-6
pkgutil.py
Lib/pkgutil.py
+0
-3
subprocess.py
Lib/subprocess.py
+0
-2
No files found.
Lib/modulefinder.py
Dosyayı görüntüle @
821d0f8b
"""Find modules used by a script, using introspection."""
# This module should be kept compatible with Python 2.2, see PEP 291.
from
__future__
import
generators
import
dis
...
...
@@ -10,11 +9,7 @@ import sys
import
types
import
struct
if
hasattr
(
sys
.
__stdout__
,
"newlines"
):
READ_MODE
=
"U"
# universal line endings
else
:
# remain compatible with Python < 2.3
READ_MODE
=
"r"
READ_MODE
=
"rU"
# XXX Clean up once str8's cstor matches bytes.
LOAD_CONST
=
bytes
([
dis
.
opname
.
index
(
'LOAD_CONST'
)])
...
...
Lib/pkgutil.py
Dosyayı görüntüle @
821d0f8b
"""Utilities to support packages."""
# NOTE: This module must remain compatible with Python 2.3, as it is shared
# by setuptools for distribution with Python 2.3 and up.
import
os
import
sys
import
imp
...
...
Lib/subprocess.py
Dosyayı görüntüle @
821d0f8b
...
...
@@ -2,8 +2,6 @@
#
# For more information about this module, see PEP 324.
#
# This module should remain compatible with Python 2.2, see PEP 291.
#
# Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
#
# Licensed to PSF under a Contributor Agreement.
...
...
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