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
4d35c57c
Kaydet (Commit)
4d35c57c
authored
Ock 11, 2013
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
c57f9f94
1829bb45
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
16 deletions
+21
-16
stat.rst
Doc/library/stat.rst
+0
-4
test_tools.py
Lib/test/test_tools.py
+1
-0
pindent.py
Tools/scripts/pindent.py
+20
-12
No files found.
Doc/library/stat.rst
Dosyayı görüntüle @
4d35c57c
...
...
@@ -182,10 +182,6 @@ The variables below define the flags used in the :data:`ST_MODE` field.
Use of the functions above is more portable than use of the first set of flags:
.. data:: S_IFMT
Bit mask for the file type bit fields.
.. data:: S_IFSOCK
Socket.
...
...
Lib/test/test_tools.py
Dosyayı görüntüle @
4d35c57c
...
...
@@ -59,6 +59,7 @@ class PindentTests(unittest.TestCase):
return
'
\n
'
.
join
(
line
.
lstrip
()
for
line
in
data
.
splitlines
())
+
'
\n
'
def
test_selftest
(
self
):
self
.
maxDiff
=
None
with
temp_dir
()
as
directory
:
data_path
=
os
.
path
.
join
(
directory
,
'_test.py'
)
with
open
(
self
.
script
)
as
f
:
...
...
Tools/scripts/pindent.py
Dosyayı görüntüle @
4d35c57c
...
...
@@ -370,6 +370,23 @@ def reformat_string(source, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs =
return
output
.
getvalue
()
# end def reformat_string
def
make_backup
(
filename
):
import
os
,
os
.
path
backup
=
filename
+
'~'
if
os
.
path
.
lexists
(
backup
):
try
:
os
.
remove
(
backup
)
except
OSError
:
print
(
"Can't remove backup
%
r"
%
(
backup
,),
file
=
sys
.
stderr
)
# end try
# end if
try
:
os
.
rename
(
filename
,
backup
)
except
OSError
:
print
(
"Can't rename
%
r to
%
r"
%
(
filename
,
backup
),
file
=
sys
.
stderr
)
# end try
# end def make_backup
def
complete_file
(
filename
,
stepsize
=
STEPSIZE
,
tabsize
=
TABSIZE
,
expandtabs
=
EXPANDTABS
):
with
open
(
filename
,
'r'
)
as
f
:
source
=
f
.
read
()
...
...
@@ -377,10 +394,7 @@ def complete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs =
result
=
complete_string
(
source
,
stepsize
,
tabsize
,
expandtabs
)
if
source
==
result
:
return
0
# end if
import
os
try
:
os
.
rename
(
filename
,
filename
+
'~'
)
except
OSError
:
pass
# end try
make_backup
(
filename
)
with
open
(
filename
,
'w'
)
as
f
:
f
.
write
(
result
)
# end with
...
...
@@ -394,10 +408,7 @@ def delete_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs = E
result
=
delete_string
(
source
,
stepsize
,
tabsize
,
expandtabs
)
if
source
==
result
:
return
0
# end if
import
os
try
:
os
.
rename
(
filename
,
filename
+
'~'
)
except
OSError
:
pass
# end try
make_backup
(
filename
)
with
open
(
filename
,
'w'
)
as
f
:
f
.
write
(
result
)
# end with
...
...
@@ -411,10 +422,7 @@ def reformat_file(filename, stepsize = STEPSIZE, tabsize = TABSIZE, expandtabs =
result
=
reformat_string
(
source
,
stepsize
,
tabsize
,
expandtabs
)
if
source
==
result
:
return
0
# end if
import
os
try
:
os
.
rename
(
filename
,
filename
+
'~'
)
except
OSError
:
pass
# end try
make_backup
(
filename
)
with
open
(
filename
,
'w'
)
as
f
:
f
.
write
(
result
)
# end with
...
...
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