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
1064a13b
Kaydet (Commit)
1064a13b
authored
Ock 09, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Do not reset the line number because we already set file position to correct
value. (fixes error in patch for issue #18960)
üst
50b82c76
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
test_traceback.py
Lib/test/test_traceback.py
+4
-0
tokenizer.c
Parser/tokenizer.c
+0
-8
No files found.
Lib/test/test_traceback.py
Dosyayı görüntüle @
1064a13b
...
...
@@ -146,6 +146,10 @@ class SyntaxTracebackCases(unittest.TestCase):
text
,
charset
,
4
)
do_test
(
"#!shebang
\n
# coding: {0}
\n
"
.
format
(
charset
),
text
,
charset
,
5
)
do_test
(
"
\t\f\n
# coding: {0}
\n
"
.
format
(
charset
),
text
,
charset
,
5
)
# Issue #18960: coding spec should has no effect
do_test
(
"0
\n
# coding: GBK
\n
"
,
"h
\xe9
ho"
,
'utf-8'
,
5
)
class
TracebackFormatTests
(
unittest
.
TestCase
):
...
...
Parser/tokenizer.c
Dosyayı görüntüle @
1064a13b
...
...
@@ -514,14 +514,6 @@ fp_setreadl(struct tok_state *tok, const char* enc)
readline
=
_PyObject_GetAttrId
(
stream
,
&
PyId_readline
);
tok
->
decoding_readline
=
readline
;
/* The file has been reopened; parsing will restart from
* the beginning of the file, we have to reset the line number.
* But this function has been called from inside tok_nextc() which
* will increment lineno before it returns. So we set it -1 so that
* the next call to tok_nextc() will start with tok->lineno == 0.
*/
tok
->
lineno
=
-
1
;
cleanup:
Py_XDECREF
(
stream
);
Py_XDECREF
(
io
);
...
...
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