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
6ed1c93c
Kaydet (Commit)
6ed1c93c
authored
Kas 28, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SVN format 9 is the same it seems
üst
2555d9dd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
svneol.py
Tools/scripts/svneol.py
+3
-3
No files found.
Tools/scripts/svneol.py
Dosyayı görüntüle @
6ed1c93c
...
@@ -39,9 +39,9 @@ def propfiles(root, fn):
...
@@ -39,9 +39,9 @@ def propfiles(root, fn):
format
=
int
(
open
(
os
.
path
.
join
(
root
,
".svn"
,
"format"
))
.
read
()
.
strip
())
format
=
int
(
open
(
os
.
path
.
join
(
root
,
".svn"
,
"format"
))
.
read
()
.
strip
())
except
IOError
:
except
IOError
:
return
[]
return
[]
if
format
==
8
:
if
format
in
(
8
,
9
)
:
# In version 8
, committed props are stored in prop-base,
# In version 8
and 9, committed props are stored in prop-base, local
#
local
modifications in props
# modifications in props
return
[
os
.
path
.
join
(
root
,
".svn"
,
"prop-base"
,
fn
+
".svn-base"
),
return
[
os
.
path
.
join
(
root
,
".svn"
,
"prop-base"
,
fn
+
".svn-base"
),
os
.
path
.
join
(
root
,
".svn"
,
"props"
,
fn
+
".svn-work"
)]
os
.
path
.
join
(
root
,
".svn"
,
"props"
,
fn
+
".svn-work"
)]
raise
ValueError
,
"Unknown repository format"
raise
ValueError
,
"Unknown repository format"
...
...
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