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
9e66ac68
Kaydet (Commit)
9e66ac68
authored
Nis 27, 2012
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge
üst
ce418b44
0e1a5b49
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
hgtouch.py
Tools/hg/hgtouch.py
+8
-4
No files found.
Tools/hg/hgtouch.py
Dosyayı görüntüle @
9e66ac68
...
...
@@ -7,15 +7,19 @@ syntax of make rules.
In addition to the dependency syntax, #-comments are supported.
"""
import
errno
import
os
def
parse_config
(
repo
):
configfile
=
repo
.
wjoin
(
".hgtouch"
)
if
not
os
.
path
.
exists
(
configfile
):
try
:
fp
=
repo
.
wfile
(
".hgtouch"
)
except
IOError
,
e
:
if
e
.
errno
!=
errno
.
ENOENT
:
raise
return
{}
result
=
{}
with
open
(
configfile
)
as
f
:
for
line
in
f
:
with
fp
:
for
line
in
f
p
:
# strip comments
line
=
line
.
split
(
'#'
)[
0
]
.
strip
()
if
':'
not
in
line
:
...
...
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