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
95ee9c71
Kaydet (Commit)
95ee9c71
authored
Ock 15, 2015
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix parsing reST with code or code-block directives (closes #23063)
Patch by Marc Abramowitz.
üst
a44ec3ff
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
4 deletions
+38
-4
check.py
Lib/distutils/command/check.py
+4
-4
test_check.py
Lib/distutils/tests/test_check.py
+31
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/command/check.py
Dosyayı görüntüle @
95ee9c71
...
...
@@ -126,7 +126,7 @@ class check(Command):
"""Returns warnings when the provided data doesn't compile."""
source_path
=
StringIO
()
parser
=
Parser
()
settings
=
frontend
.
OptionParser
()
.
get_default_values
()
settings
=
frontend
.
OptionParser
(
components
=
(
Parser
,)
)
.
get_default_values
()
settings
.
tab_width
=
4
settings
.
pep_references
=
None
settings
.
rfc_references
=
None
...
...
@@ -142,8 +142,8 @@ class check(Command):
document
.
note_source
(
source_path
,
-
1
)
try
:
parser
.
parse
(
data
,
document
)
except
AttributeError
:
reporter
.
messages
.
append
(
(
-
1
,
'Could not finish the parsing.'
,
''
,
{}))
except
AttributeError
as
e
:
reporter
.
messages
.
append
(
(
-
1
,
'Could not finish the parsing:
%
s.'
%
e
,
''
,
{}))
return
reporter
.
messages
Lib/distutils/tests/test_check.py
Dosyayı görüntüle @
95ee9c71
# -*- encoding: utf8 -*-
"""Tests for distutils.command.check."""
import
textwrap
import
unittest
from
test.test_support
import
run_unittest
...
...
@@ -93,6 +94,36 @@ class CheckTestCase(support.LoggingSilencer,
cmd
=
self
.
_run
(
metadata
,
strict
=
1
,
restructuredtext
=
1
)
self
.
assertEqual
(
cmd
.
_warnings
,
0
)
@unittest.skipUnless
(
HAS_DOCUTILS
,
"won't test without docutils"
)
def
test_check_restructuredtext_with_syntax_highlight
(
self
):
# Don't fail if there is a `code` or `code-block` directive
example_rst_docs
=
[]
example_rst_docs
.
append
(
textwrap
.
dedent
(
"""
\
Here's some code:
.. code:: python
def foo():
pass
"""
))
example_rst_docs
.
append
(
textwrap
.
dedent
(
"""
\
Here's some code:
.. code-block:: python
def foo():
pass
"""
))
for
rest_with_code
in
example_rst_docs
:
pkg_info
,
dist
=
self
.
create_dist
(
long_description
=
rest_with_code
)
cmd
=
check
(
dist
)
cmd
.
check_restructuredtext
()
self
.
assertEqual
(
cmd
.
_warnings
,
0
)
msgs
=
cmd
.
_check_rst_data
(
rest_with_code
)
self
.
assertEqual
(
len
(
msgs
),
0
)
def
test_check_all
(
self
):
metadata
=
{
'url'
:
'xxx'
,
'author'
:
'xxx'
}
...
...
Misc/NEWS
Dosyayı görüntüle @
95ee9c71
...
...
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
- Issue #23063: In the disutils' check command, fix parsing of reST with code or
code-block directives.
- Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The
availability of the function is checked during the compilation. Patch written
by Bernard Spil.
...
...
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