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
96ca6916
Kaydet (Commit)
96ca6916
authored
Haz 15, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make sys.path and sys.argv into lists of strings.
Remove the hack in test_popen.py to overcome this issue.
üst
aa588c46
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
test_popen.py
Lib/test/test_popen.py
+1
-1
sysmodule.c
Python/sysmodule.c
+6
-6
No files found.
Lib/test/test_popen.py
Dosyayı görüntüle @
96ca6916
...
@@ -20,7 +20,7 @@ if ' ' in python:
...
@@ -20,7 +20,7 @@ if ' ' in python:
class
PopenTest
(
unittest
.
TestCase
):
class
PopenTest
(
unittest
.
TestCase
):
def
_do_test_commandline
(
self
,
cmdline
,
expected
):
def
_do_test_commandline
(
self
,
cmdline
,
expected
):
cmd
=
'
%
s -c "import sys; print(
list(map(str, sys.argv))
)"
%
s'
cmd
=
'
%
s -c "import sys; print(
sys.argv
)"
%
s'
cmd
=
cmd
%
(
python
,
cmdline
)
cmd
=
cmd
%
(
python
,
cmdline
)
data
=
os
.
popen
(
cmd
)
.
read
()
data
=
os
.
popen
(
cmd
)
.
read
()
got
=
eval
(
data
)[
1
:]
# strip off argv[0]
got
=
eval
(
data
)[
1
:]
# strip off argv[0]
...
...
Python/sysmodule.c
Dosyayı görüntüle @
96ca6916
...
@@ -1145,7 +1145,7 @@ makepathobject(char *path, int delim)
...
@@ -1145,7 +1145,7 @@ makepathobject(char *path, int delim)
p
=
strchr
(
path
,
delim
);
p
=
strchr
(
path
,
delim
);
if
(
p
==
NULL
)
if
(
p
==
NULL
)
p
=
strchr
(
path
,
'\0'
);
/* End of string */
p
=
strchr
(
path
,
'\0'
);
/* End of string */
w
=
Py
String
_FromStringAndSize
(
path
,
(
Py_ssize_t
)
(
p
-
path
));
w
=
Py
Unicode
_FromStringAndSize
(
path
,
(
Py_ssize_t
)
(
p
-
path
));
if
(
w
==
NULL
)
{
if
(
w
==
NULL
)
{
Py_DECREF
(
v
);
Py_DECREF
(
v
);
return
NULL
;
return
NULL
;
...
@@ -1190,14 +1190,14 @@ makeargvobject(int argc, char **argv)
...
@@ -1190,14 +1190,14 @@ makeargvobject(int argc, char **argv)
if
(
i
==
0
)
{
if
(
i
==
0
)
{
char
*
fn
=
decc
$
translate_vms
(
argv
[
0
]);
char
*
fn
=
decc
$
translate_vms
(
argv
[
0
]);
if
((
fn
==
(
char
*
)
0
)
||
fn
==
(
char
*
)
-
1
)
if
((
fn
==
(
char
*
)
0
)
||
fn
==
(
char
*
)
-
1
)
v
=
Py
String
_FromString
(
argv
[
0
]);
v
=
Py
Unicode
_FromString
(
argv
[
0
]);
else
else
v
=
Py
String
_FromString
(
v
=
Py
Unicode
_FromString
(
decc
$
translate_vms
(
argv
[
0
]));
decc
$
translate_vms
(
argv
[
0
]));
}
else
}
else
v
=
Py
String
_FromString
(
argv
[
i
]);
v
=
Py
Unicode
_FromString
(
argv
[
i
]);
#else
#else
PyObject
*
v
=
Py
String
_FromString
(
argv
[
i
]);
PyObject
*
v
=
Py
Unicode
_FromString
(
argv
[
i
]);
#endif
#endif
if
(
v
==
NULL
)
{
if
(
v
==
NULL
)
{
Py_DECREF
(
av
);
Py_DECREF
(
av
);
...
@@ -1301,7 +1301,7 @@ PySys_SetArgv(int argc, char **argv)
...
@@ -1301,7 +1301,7 @@ PySys_SetArgv(int argc, char **argv)
#endif
/* Unix */
#endif
/* Unix */
}
}
#endif
/* All others */
#endif
/* All others */
a
=
Py
String
_FromStringAndSize
(
argv0
,
n
);
a
=
Py
Unicode
_FromStringAndSize
(
argv0
,
n
);
if
(
a
==
NULL
)
if
(
a
==
NULL
)
Py_FatalError
(
"no mem for sys.path insertion"
);
Py_FatalError
(
"no mem for sys.path insertion"
);
if
(
PyList_Insert
(
path
,
0
,
a
)
<
0
)
if
(
PyList_Insert
(
path
,
0
,
a
)
<
0
)
...
...
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