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
9bd39c11
Kaydet (Commit)
9bd39c11
authored
Tem 11, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
put downloaded test support files in Lib/test/data instead of the cwd
üst
51f32c00
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
39 deletions
+5
-39
.bzrignore
.bzrignore
+0
-17
.hgignore
.hgignore
+0
-17
test_support.py
Lib/test/test_support.py
+4
-5
Makefile.pre.in
Makefile.pre.in
+1
-0
No files found.
.bzrignore
Dosyayı görüntüle @
9bd39c11
...
...
@@ -14,24 +14,7 @@ platform
pyconfig.h
libpython*.a
python.exe
CP936.TXT
SHIFT_JISX0213.TXT
JOHAB.TXT
EUC-JP.TXT
NormalizationTest-3.2.0.txt
NormalizationTest.txt
BIG5.TXT
BIG5HKSCS-2004.TXT
CP949.TXT
EUC-CN.TXT
BIG5HKSCS.TXT
SHIFTJIS.TXT
EUC-KR.TXT
EUC-JISX0213.TXT
CP932.TXT
CP950.TXT
reflog.txt
gb-18030-2000.xml
tags
TAGS
.gdb_history
...
...
.hgignore
Dosyayı görüntüle @
9bd39c11
.gdb_history
.purify
.svn
BIG5.TXT
BIG5HKSCS-2004.TXT
BIG5HKSCS.TXT
CP932.TXT
CP936.TXT
CP949.TXT
CP950.TXT
EUC-CN.TXT
EUC-JISX0213.TXT
EUC-JP.TXT
EUC-KR.TXT
JOHAB.TXT
Makefile
Makefile.pre
NormalizationTest-3.2.0.txt
NormalizationTest.txt
SHIFTJIS.TXT
SHIFT_JISX0213.TXT
TAGS
autom4te.cache
build
...
...
@@ -28,7 +12,6 @@ config.log
config.status
config.status.lineno
db_home
gb-18030-2000.xml
platform
pyconfig.h
python
...
...
Lib/test/test_support.py
Dosyayı görüntüle @
9bd39c11
...
...
@@ -468,13 +468,12 @@ def open_urlresource(url):
requires
(
'urlfetch'
)
filename
=
urlparse
.
urlparse
(
url
)[
2
]
.
split
(
'/'
)[
-
1
]
# '/': it's URL!
for
path
in
[
os
.
path
.
curdir
,
os
.
path
.
pardir
]:
fn
=
os
.
path
.
join
(
path
,
filename
)
if
os
.
path
.
exists
(
fn
):
return
open
(
fn
)
fn
=
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"data"
,
filename
)
if
os
.
path
.
exists
(
fn
):
return
open
(
fn
)
print
>>
get_original_stdout
(),
'
\t
fetching
%
s ...'
%
url
fn
,
_
=
urllib
.
urlretrieve
(
url
,
f
ilename
)
fn
,
_
=
urllib
.
urlretrieve
(
url
,
f
n
)
return
open
(
fn
)
...
...
Makefile.pre.in
Dosyayı görüntüle @
9bd39c11
...
...
@@ -1173,6 +1173,7 @@ clobber: clean profile-removal
# remove all generated files, even Makefile[.pre]
# Keep configure and Python-ast.[ch], it's possible they can't be generated
distclean
:
clobber
-
rm
-f
Lib/test/data/
*
-
rm
-f
core Makefile Makefile.pre config.status
\
Modules/Setup Modules/Setup.local Modules/Setup.config
find
$(srcdir)
'('
-name
'*.fdc'
-o
-name
'*~'
\
...
...
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