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
31d2df5b
Kaydet (Commit)
31d2df5b
authored
Agu 14, 2002
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #550192: Set softspace to 0 in raw_input().
üst
04490bf2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
18 deletions
+22
-18
bltinmodule.c
Python/bltinmodule.c
+22
-18
No files found.
Python/bltinmodule.c
Dosyayı görüntüle @
31d2df5b
...
...
@@ -1289,12 +1289,25 @@ static PyObject *
builtin_raw_input
(
PyObject
*
self
,
PyObject
*
args
)
{
PyObject
*
v
=
NULL
;
PyObject
*
f
;
PyObject
*
fin
=
PySys_GetObject
(
"stdin"
);
PyObject
*
fout
=
PySys_GetObject
(
"stdout"
);
if
(
!
PyArg_ParseTuple
(
args
,
"|O:[raw_]input"
,
&
v
))
return
NULL
;
if
(
PyFile_AsFile
(
PySys_GetObject
(
"stdin"
))
==
stdin
&&
PyFile_AsFile
(
PySys_GetObject
(
"stdout"
))
==
stdout
&&
if
(
fin
==
NULL
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"lost sys.stdin"
);
return
NULL
;
}
if
(
fout
==
NULL
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"lost sys.stdout"
);
return
NULL
;
}
if
(
PyFile_SoftSpace
(
fout
,
0
))
{
if
(
PyFile_WriteString
(
" "
,
fout
)
!=
0
)
return
NULL
;
}
if
(
PyFile_AsFile
(
fin
)
==
stdin
&&
PyFile_AsFile
(
fout
)
==
stdout
&&
isatty
(
fileno
(
stdin
))
&&
isatty
(
fileno
(
stdout
)))
{
PyObject
*
po
;
char
*
prompt
;
...
...
@@ -1325,32 +1338,23 @@ builtin_raw_input(PyObject *self, PyObject *args)
else
{
/* strip trailing '\n' */
size_t
len
=
strlen
(
s
);
if
(
len
>
INT_MAX
)
{
PyErr_SetString
(
PyExc_OverflowError
,
"input too long"
);
PyErr_SetString
(
PyExc_OverflowError
,
"input too long"
);
result
=
NULL
;
}
else
{
result
=
PyString_FromStringAndSize
(
s
,
(
int
)(
len
-
1
));
result
=
PyString_FromStringAndSize
(
s
,
(
int
)(
len
-
1
));
}
}
PyMem_FREE
(
s
);
return
result
;
}
if
(
v
!=
NULL
)
{
f
=
PySys_GetObject
(
"stdout"
);
if
(
f
==
NULL
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"lost sys.stdout"
);
return
NULL
;
}
if
(
Py_FlushLine
()
!=
0
||
PyFile_WriteObject
(
v
,
f
,
Py_PRINT_RAW
)
!=
0
)
if
(
PyFile_WriteObject
(
v
,
fout
,
Py_PRINT_RAW
)
!=
0
)
return
NULL
;
}
f
=
PySys_GetObject
(
"stdin"
);
if
(
f
==
NULL
)
{
PyErr_SetString
(
PyExc_RuntimeError
,
"lost sys.stdin"
);
return
NULL
;
}
return
PyFile_GetLine
(
f
,
-
1
);
return
PyFile_GetLine
(
fin
,
-
1
);
}
PyDoc_STRVAR
(
raw_input_doc
,
...
...
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