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
d5a5f5d3
Kaydet (Commit)
d5a5f5d3
authored
Agu 22, 2007
tarafından
Collin Winter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1774414: make it possible to use SVK to develop Python.
üst
4d9620a6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
sysmodule.c
Python/sysmodule.c
+7
-5
No files found.
Python/sysmodule.c
Dosyayı görüntüle @
d5a5f5d3
...
...
@@ -934,15 +934,17 @@ svnversion_init(void)
{
const
char
*
python
,
*
br_start
,
*
br_end
,
*
br_end2
,
*
svnversion
;
Py_ssize_t
len
;
int
istag
;
int
istag
=
0
;
if
(
svn_initialized
)
return
;
python
=
strstr
(
headurl
,
"/python/"
);
if
(
!
python
)
Py_FatalError
(
"subversion keywords missing"
);
if
(
!
python
)
{
strcpy
(
branch
,
"unknown branch"
);
strcpy
(
shortbranch
,
"unknown"
);
}
else
{
br_start
=
python
+
8
;
br_end
=
strchr
(
br_start
,
'/'
);
assert
(
br_end
);
...
...
@@ -955,7 +957,6 @@ svnversion_init(void)
if
(
strncmp
(
br_start
,
"trunk"
,
5
)
==
0
)
{
strcpy
(
branch
,
"trunk"
);
strcpy
(
shortbranch
,
"trunk"
);
}
else
if
(
istag
||
strncmp
(
br_start
,
"branches"
,
8
)
==
0
)
{
len
=
br_end2
-
br_start
;
...
...
@@ -970,6 +971,7 @@ svnversion_init(void)
Py_FatalError
(
"bad HeadURL"
);
return
;
}
}
svnversion
=
_Py_svnversion
();
...
...
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