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
83ab9958
Kaydet (Commit)
83ab9958
authored
Şub 01, 2018
tarafından
Stéphane Wirtel
Kaydeden (comit)
Christian Heimes
Şub 01, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32711: Fix warnings for Python/ast_unparse.c (#5426)
* bpo-32711: Fix warnings for Python/ast_unparse.c
üst
97f1ca16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
2018-01-29-14-36-37.bpo-32711.8hQFJP.rst
...ore and Builtins/2018-01-29-14-36-37.bpo-32711.8hQFJP.rst
+1
-0
ast_unparse.c
Python/ast_unparse.c
+7
-3
No files found.
Misc/NEWS.d/next/Core and Builtins/2018-01-29-14-36-37.bpo-32711.8hQFJP.rst
0 → 100644
Dosyayı görüntüle @
83ab9958
Fix the warning messages for Python/ast_unparse.c. Patch by Stéphane Wirtel
Python/ast_unparse.c
Dosyayı görüntüle @
83ab9958
...
...
@@ -20,7 +20,7 @@ append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec);
static
int
append_charp
(
_PyUnicodeWriter
*
writer
,
const
char
*
charp
)
{
return
_PyUnicodeWriter_WriteASCIIString
(
writer
,
charp
,
-
1
);
return
_PyUnicodeWriter_WriteASCIIString
(
writer
,
charp
,
-
1
);
}
static
int
...
...
@@ -100,6 +100,8 @@ append_ast_binop(_PyUnicodeWriter *writer, expr_ty e, bool omit_parens)
case
BitAnd
:
op
=
" & "
;
break
;
case
FloorDiv
:
op
=
" // "
;
break
;
case
Pow
:
op
=
" ** "
;
break
;
default:
Py_UNREACHABLE
();
}
if
(
-
1
==
append_charp
(
writer
,
op
))
{
...
...
@@ -127,6 +129,8 @@ append_ast_unaryop(_PyUnicodeWriter *writer, expr_ty e, bool omit_parens)
case
Not
:
op
=
"not "
;
break
;
case
UAdd
:
op
=
"+"
;
break
;
case
USub
:
op
=
"-"
;
break
;
default:
Py_UNREACHABLE
();
}
if
(
-
1
==
append_charp
(
writer
,
op
))
{
...
...
@@ -856,7 +860,7 @@ append_formattedvalue(_PyUnicodeWriter *writer, expr_ty e, bool is_format_spec)
return
-
1
;
}
}
if
(
e
->
v
.
FormattedValue
.
format_spec
>
0
)
{
if
(
e
->
v
.
FormattedValue
.
format_spec
)
{
if
(
-
1
==
_PyUnicodeWriter_WriteASCIIString
(
writer
,
":"
,
1
)
||
-
1
==
append_fstring_element
(
writer
,
e
->
v
.
FormattedValue
.
format_spec
,
...
...
@@ -1119,7 +1123,7 @@ append_ast_expr(_PyUnicodeWriter *writer, expr_ty e, bool omit_parens)
}
static
int
maybe_init_static_strings
()
maybe_init_static_strings
(
void
)
{
if
(
!
_str_open_br
&&
!
(
_str_open_br
=
PyUnicode_InternFromString
(
"{"
)))
{
...
...
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