Skip to content

Commit e4902e5

Browse files
authored
Merge pull request #1220 from python/pospell-fixes
2 parents 1907e6a + 363cb45 commit e4902e5

File tree

4 files changed

+4
-32
lines changed

4 files changed

+4
-32
lines changed

conf.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@
4242

4343
# Extend settings from upstream
4444
_exclude_patterns = [
45-
# This file is not included and it not marked as :orphan:
46-
'*/distutils/_setuptools_disclaimer.rst',
45+
# This file is not included and it's not marked as :orphan:
46+
'distutils/_setuptools_disclaimer.rst',
47+
'cpython/Doc/distutils/_setuptools_disclaimer.rst',
4748
]
4849
if 'exclude_patterns' in globals():
4950
exclude_patterns += _exclude_patterns

library/codecs.po

+1-2
Original file line numberDiff line numberDiff line change
@@ -2652,9 +2652,8 @@ msgid "mac_latin2"
26522652
msgstr "mac_latin2"
26532653

26542654
#: ../Doc/library/codecs.rst:1201
2655-
#, fuzzy
26562655
msgid "maclatin2, maccentraleurope, mac_centeuro"
2657-
msgstr "maclatin2, maccentraleurope"
2656+
msgstr "maclatin2, maccentraleurope, mac_centeuro"
26582657

26592658
#: ../Doc/library/codecs.rst:1204
26602659
msgid "mac_roman"

library/sys.po

-23
Original file line numberDiff line numberDiff line change
@@ -76,29 +76,6 @@ msgstr ""
7676
"func:`PySys_AddAuditHook` se llaman primero, seguidos de los ganchos "
7777
"agregados en el intérprete actual."
7878

79-
#: ../Doc/library/sys.rst:38
80-
msgid ""
81-
"Raises an :ref:`auditing event <auditing>` ``sys.addaudithook`` with no "
82-
"arguments."
83-
msgstr ""
84-
"Lanza un :ref:`auditing event <auditing>` ``sys.addaudithook`` sin "
85-
"argumentos."
86-
87-
#: ../Doc/library/sys.rst:40
88-
#, fuzzy
89-
msgid ""
90-
"Calling :func:`sys.addaudithook` will itself raise an auditing event named "
91-
"``sys.addaudithook`` with no arguments. If any existing hooks raise an "
92-
"exception derived from :class:`RuntimeError`, the new hook will not be added "
93-
"and the exception suppressed. As a result, callers cannot assume that their "
94-
"hook has been added unless they control all existing hooks."
95-
msgstr ""
96-
"Lanza un evento de auditoría ``sys.addaudithook`` sin argumentos. Si algún "
97-
"gancho existente genera una excepción derivada de :class:`RuntimeError`, el "
98-
"nuevo gancho no se agregará y la excepción se suprimirá. Como resultado, las "
99-
"personas que llaman no pueden asumir que su enlace se ha agregado a menos "
100-
"que controlen todos los enlaces existentes."
101-
10279
#: ../Doc/library/sys.rst:47
10380
#, fuzzy
10481
msgid ""

library/tarfile.po

-5
Original file line numberDiff line numberDiff line change
@@ -873,18 +873,13 @@ msgid "Added the *set_attrs* parameter."
873873
msgstr "Se agregó el parámetro *set_attrs*."
874874

875875
#: ../Doc/library/tarfile.rst:448
876-
#, fuzzy
877876
msgid ""
878877
"Extract a member from the archive as a file object. *member* may be a "
879878
"filename or a :class:`TarInfo` object. If *member* is a regular file or a "
880879
"link, an :class:`io.BufferedReader` object is returned. For all other "
881880
"existing members, :const:`None` is returned. If *member* does not appear in "
882881
"the archive, :exc:`KeyError` is raised."
883882
msgstr ""
884-
"Extract a member from the archive as a file object. *member* may be a "
885-
"filename or a :class:`TarInfo` object. If *member* is a regular file or a "
886-
"link, an :class:`io.BufferedReader` object is returned. Otherwise, :const:"
887-
"`None` is returned."
888883

889884
#: ../Doc/library/tarfile.rst:454
890885
msgid "Return an :class:`io.BufferedReader` object."

0 commit comments

Comments
 (0)