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
3db6ebcc
Kaydet (Commit)
3db6ebcc
authored
Ock 28, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use __builtin__ instead of builtin
üst
ffe9490d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
aifc.py
Lib/aifc.py
+3
-3
sunau.py
Lib/sunau.py
+4
-4
No files found.
Lib/aifc.py
Dosyayı görüntüle @
3db6ebcc
...
...
@@ -133,7 +133,7 @@
# changed by calling aiff() or aifc() before the first writeframes or
# writeframesraw.
import
builtin
import
__builtin__
try
:
import
CL
except
ImportError
:
...
...
@@ -410,7 +410,7 @@ class Aifc_read:
def
__init__
(
self
,
f
):
if
type
(
f
)
==
type
(
''
):
f
=
builtin
.
open
(
f
,
'r'
)
f
=
__builtin__
.
open
(
f
,
'r'
)
# else, assume it is an open file object already
self
.
initfp
(
f
)
...
...
@@ -616,7 +616,7 @@ class Aifc_write:
def
__init__
(
self
,
f
):
if
type
(
f
)
==
type
(
''
):
filename
=
f
f
=
builtin
.
open
(
f
,
'w'
)
f
=
__builtin__
.
open
(
f
,
'w'
)
else
:
# else, assume it is an open file object already
filename
=
'???'
...
...
Lib/sunau.py
Dosyayı görüntüle @
3db6ebcc
...
...
@@ -153,8 +153,8 @@ class Au_read:
def
__init__
(
self
,
f
):
if
type
(
f
)
==
type
(
''
):
import
builtin
f
=
builtin
.
open
(
f
,
'r'
)
import
__builtin__
f
=
__builtin__
.
open
(
f
,
'r'
)
self
.
initfp
(
f
)
def
__del__
(
self
):
...
...
@@ -284,8 +284,8 @@ class Au_write:
def
__init__
(
self
,
f
):
if
type
(
f
)
==
type
(
''
):
import
builtin
f
=
builtin
.
open
(
f
,
'w'
)
import
__builtin__
f
=
__builtin__
.
open
(
f
,
'w'
)
self
.
initfp
(
f
)
def
__del__
(
self
):
...
...
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