[issue35584] Wrong statement about ^ in howto/regex.rst

2019-01-05 Thread Julien Palard
Julien Palard added the comment: yes. -- ___ Python tracker <https://bugs.python.org/issue35584> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35851] Make search result in online docs keep their position when search finishes

2019-02-03 Thread Julien Palard
Julien Palard added the comment: Hi Roel, I like the idea, but as xtreak told, it's a sphinx issue we cannot easy fix on our side, better fix it sphinx side. Would you please repoen it on the sphinx bug tracker at https://github.com/sphinx-doc/sphinx/i

[issue35055] Error when we try to download the epub archive

2019-02-05 Thread Julien Palard
Julien Palard added the comment: Issue has been fixed upstream IIRC: https://github.com/sphinx-doc/sphinx/pull/5574 -- ___ Python tracker <https://bugs.python.org/issue35

[issue35055] Error when we try to download the epub archive

2019-02-10 Thread Julien Palard
Julien Palard added the comment: @ned the issue with builds in 3.8 come from our use of column and row spanning in the 3.8 documentation, breaking the plain text builder. I fixed it in https://github.com/sphinx-doc/sphinx/pull/5559 which has to be release in march IIRC

[issue35995] use SSL encrypted socket on logging.handlers.SMTPHandler

2019-02-14 Thread Julien Palard
Julien Palard added the comment: lidayan If I understand correctly, you're trying to connect to an SMTP server that does *not* support STARTTLS, only implicit TLS on port 465? -- nosy: +mdk ___ Python tracker <https://bugs.python.org/is

[issue35995] use SSL encrypted socket on logging.handlers.SMTPHandler

2019-02-14 Thread Julien Palard
Julien Palard added the comment: @lidayan, if you're trying implicit TLS, have you tried giving a username an an empty tuple to the secure parameter? It looks like the empty tuple means "implicit TLS", see the docstring https://github.com/pyth

[issue35995] use SSL encrypted socket on logging.handlers.SMTPHandler

2019-02-14 Thread Julien Palard
Julien Palard added the comment: lidayan (Ignore my latest comment I was reading your implementation, not the actual one...). -- ___ Python tracker <https://bugs.python.org/issue35

[issue36038] ^ used in inaccurate example in regex-howto

2019-02-19 Thread Julien Palard
Julien Palard added the comment: Hi, thanks for reporting! It's a duplicate of https://bugs.python.org/issue35584, so I'm closing it, but if you feed like opening a PR on it, it would be appreciated. Bests. -- resolution: -> duplicate stage: -> resolved status

[issue35584] Wrong statement about ^ in howto/regex.rst

2019-02-19 Thread Julien Palard
Change by Julien Palard : -- keywords: +easy ___ Python tracker <https://bugs.python.org/issue35584> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36074] Result of `asyncio.Server.sockets` after `Server.close()` is not clear

2019-02-22 Thread Julien Palard
Julien Palard added the comment: Behavior changed in commit c9070d03f5169ad6e171e641b7fa8feab18bf229 (Jan 2018) but has been documented as returning None since 8ebeb03740dad4d9edd65de88f82840a05070941 (Jul 2014). -- nosy: +mdk, vstinner, yselivanov

[issue36064] docs: urllib.request.Request not accepting iterables data type

2019-02-22 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +12013 ___ Python tracker <https://bugs.python.org/issue36064> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36074] Result of `asyncio.Server.sockets` after `Server.close()` is not clear

2019-02-22 Thread Julien Palard
Julien Palard added the comment: Thanks Emmanuel for the PR (yes those PRs do not need NEWS). Thanks Kevin for the proposition to try fixing it the other way around, that's appreciated, don't hesitate to filter on easy issues there's some others :) -- resolution:

[issue30499] Deprecated note in set documentation

2017-05-28 Thread Julien Palard
New submission from Julien Palard: While translating doc to french, I found a surprising comment in stdtypes.html about sets, stating: > To support searching for an equivalent frozenset, the elem set is temporarily > mutated during the search and then restored. During the search, the el

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-05-31 Thread Julien Palard
Julien Palard added the comment: If it can be of any help, pytest have a "pytest --collect-only", it may make sense to use the same option name for consistency. I also though about "--dry-run" but I still prefer --list-tests or --collect-only. -

[issue30523] unittest: add --list-tests option to only display the list of test names, don't run tests

2017-06-03 Thread Julien Palard
Julien Palard added the comment: It works in "discover" mode, I tested: ./python -m unittest discover ./Lib/unittest/test/ --list-tests and it worked. So maybe the --list-tests should be moved to _getDiscoveryArgParser? Also spotted that tests are printed on stderr, typically when

[issue35033] Column or row spanning cells are not implemented.

2019-02-25 Thread Julien Palard
Julien Palard added the comment: IIRC this will be released in the next major sphinx version, planned for around march. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35435] Discourage external links to old docs.

2019-03-08 Thread Julien Palard
Julien Palard added the comment: Let's not have duplicate issues, so I'm closing this in favor of https://github.com/python/python-docs-theme/issues/24. Thanks Terry for noticing. -- resolution: -> duplicate stage: needs patch -> resolved status

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-03-08 Thread Julien Palard
Julien Palard added the comment: After some research I found a few comments around comments being marked as starting by #-#-#-#-# and ending with #-#-#-#-#, not just starting with #. In gettext-0.19.8.1 sources for example: $ grep -r '#-#-#-#-' | head gettext-tools/misc/

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-03-08 Thread Julien Palard
Julien Palard added the comment: The 'last-translator': '# ANI PETER|അനി പീറ്റര്\u200d ', case does not looks like an issue, it does *not* starts with #, it's in the middle of the line, the line starts with "Last-Translator". -- ___

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-03-08 Thread Julien Palard
Julien Palard added the comment: That's literally sick þ Looks like we have to trust the "\n", not the file wrapping, but this means that: msgstr "" "Pro" "jec" "t-I" "d-V" "ers" "ion" ": " &q

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-03-08 Thread Julien Palard
Julien Palard added the comment: I tested further, and when we have this horrible mess in the po files: msgstr "" "Pro" "jec" "t-I" "d-V" "ers" "ion" ": " "dig" "ika" "m\n" We

[issue36029] Use title-case HTTP header fields

2019-03-09 Thread Julien Palard
Julien Palard added the comment: Closing as "not a bug" as discussed in the PR. Anyway thanks Géry for the work on this, even if not merged it's appreciated! -- resolution: -> not a bug stage: patch review -> resolved s

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-03-09 Thread Julien Palard
Change by Julien Palard : -- keywords: +patch pull_requests: +12241 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36239> ___ ___ Py

[issue36291] [2.7] Coverity Scan: Modules/_json.c: leaked_storage: Variable "numstr" going out of scope leaks the storage it points to.

2019-03-14 Thread Julien Palard
Change by Julien Palard : -- assignee: -> matrixise nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue36291> ___ ___ Python-bugs-list mai

[issue36329] use the right python "make -C Doc/ serve"

2019-03-18 Thread Julien Palard
Julien Palard added the comment: New changeset 09a9f1799c8c58f573c50cb2d526422436b8658b by Julien Palard (Stéphane Wirtel) in branch 'master': bpo-36329: Declare the version of Python to use for Tools/scripts/serve.py (#12385) https://github.com/python/cpyt

[issue36211] show full url when execute "make -C Doc/ serve"

2019-03-18 Thread Julien Palard
Change by Julien Palard : -- resolution: -> duplicate stage: patch review -> resolved status: open -> closed superseder: -> Deprecate Tools/scripts/serve.py in favour of python -m http.server -d ___ Python tracker <https://

[issue35605] backported patch requires new sphinx, minimum sphinx version was not bumped

2019-03-18 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +12367 ___ Python tracker <https://bugs.python.org/issue35605> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35605] backported patch requires new sphinx, minimum sphinx version was not bumped

2019-03-18 Thread Julien Palard
Julien Palard added the comment: New changeset 869652b426bb34a30ce7b39f0a0ac242ed5b1016 by Julien Palard in branch '2.7': [2.7] bpo-35605: Fix documentation build for sphinx<1.6 (GH-12413) https://github.com/python/cpython/commit/869652b426bb34a30ce7b39f0a0

[issue36345] Deprecate Tools/scripts/serve.py in favour of python -m http.server -d

2019-03-18 Thread Julien Palard
Julien Palard added the comment: If it's appreciated as a demo for wsgiref, wouldn't it be better to move it inside Doc/library/wsgiref.rst? It was written specifically for the Doc/Makefile, it's no longer needed for the Doc/Makefile, so the question pops: is it usefull to

[issue34160] ElementTree not preserving attribute order

2019-03-18 Thread Julien Palard
Julien Palard added the comment: We found two occurrences of external code breaking due to this change, and one looks tricky to fix (docutils), this indicates there are other library that will break. > My (somewhat educated) gut feeling is that most users simply won't care or >

[issue34160] ElementTree not preserving attribute order

2019-03-19 Thread Julien Palard
Julien Palard added the comment: > Actually, it is really easy to fix By answering this, it looks like you're currently going this way, and obviously you'll succeed fixing docutils, this still mean voluntarily leaving some (or many?) other code broken (open source and closed

[issue35564] [DOC] Sphinx 2.0 will require master_doc variable set in conf.py

2019-03-20 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +12413 ___ Python tracker <https://bugs.python.org/issue35564> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35564] [DOC] Sphinx 2.0 will require master_doc variable set in conf.py

2019-03-20 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +12414 ___ Python tracker <https://bugs.python.org/issue35564> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35564] [DOC] Sphinx 2.0 will require master_doc variable set in conf.py

2019-03-20 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +12415 ___ Python tracker <https://bugs.python.org/issue35564> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35564] [DOC] Sphinx 2.0 will require master_doc variable set in conf.py

2019-03-20 Thread Julien Palard
Julien Palard added the comment: New changeset 07b8018d75f3d4495708cf1d4175f33b40e13d30 by Julien Palard in branch '2.7': [2.7] bpo-35564: add master_doc='contents' to conf.py (GH-12462) https://github.com/python/cpython/commit/07b8018d75f3d4495708

[issue35564] [DOC] Sphinx 2.0 will require master_doc variable set in conf.py

2019-03-20 Thread Julien Palard
Julien Palard added the comment: New changeset 756cfd88920c2349d4546024856c406409b0ab7b by Julien Palard in branch '3.7': [3.7] bpo-35564: add master_doc='contents' to conf.py (GH-12460) https://github.com/python/cpython/commit/756cfd88920c2349d454

[issue35528] [DOC] [LaTeX] Sphinx 2.0 uses GNU FreeFont as default for xelatex

2019-03-22 Thread Julien Palard
Julien Palard added the comment: Thanks a lot for the heads up jfbu! Opened a PR here: https://github.com/python/psf-salt/pull/167 -- ___ Python tracker <https://bugs.python.org/issue35

[issue35528] [DOC] [LaTeX] Sphinx 2.0 uses GNU FreeFont as default for xelatex

2019-03-22 Thread Julien Palard
Change by Julien Palard : -- stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35528> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue35528] [DOC] [LaTeX] Sphinx 2.0 uses GNU FreeFont as default for xelatex

2019-03-23 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36425] Add Simplified Chinese to the language switcher

2019-03-26 Thread Julien Palard
Julien Palard added the comment: That's nice to read! Once you've added a NEWS (see PR) entry I'll be happy to merge this. -- assignee: docs@python -> mdk ___ Python tracker <https://bugs.

[issue36425] Add Simplified Chinese to the language switcher

2019-03-28 Thread Julien Palard
Julien Palard added the comment: New changeset 45a5fdb91cee665161a8b1980bb4e6ccb999f58f by Julien Palard (zhsj) in branch 'master': bpo-36425: Add Simplified Chinese to the language switcher (GH-12537) https://github.com/python/cpython/commit/45a5fdb91cee665161a8b1980bb4e6

[issue36451] Docs zh-cn roots error in nav bar

2019-03-28 Thread Julien Palard
Julien Palard added the comment: There was no link to zh-cn because they did not reached the completion needed for the link to appear. Now it's done, so per https://bugs.python.org/issue36425 this will be resolved. -- resolution: -> duplicate stage: -> resolved s

[issue36425] Add Simplified Chinese to the language switcher

2019-03-28 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36064] docs: urllib.request.Request not accepting iterables data type

2019-03-29 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue28866] Type cache is not correctly invalidated on a class defining mro()

2019-05-06 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +13031 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue28866> ___ ___ Python-bugs-list mai

[issue28729] Exception from sqlite3 adapter masked by sqlite3.InterfaceError

2019-05-06 Thread Julien Palard
Julien Palard added the comment: This has been fixed in fc662ac332443a316a120fa5287c235dc4f8739b. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-06 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +13034 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue28795> ___ ___ Python-bugs-list mai

[issue24339] iso6937 encoding missing

2019-05-06 Thread Julien Palard
Julien Palard added the comment: For the moment, I'm closing this issue as there's no activity on it I suspect it may no be that usefull. I may be wrong, so if someone actually needs this, don't hesitate either to put it as a package on PyPI (it should probably go there any

[issue36784] __import__ with empty folder after importlib.invalidate_caches causes reference leak

2019-05-06 Thread Julien Palard
Julien Palard added the comment: Thanks Sebastian for looking at it \o/ -- nosy: +mdk resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue20185] Derby #17: Convert 49 sites to Argument Clinic across 13 files

2019-05-07 Thread Julien Palard
Julien Palard added the comment: I rebased the conglomerate patch onto current master, and there's only three methods left, in floatobject.c, it's three methods inside a #if 0, it does not looks interesting to merge it (30 insertions, 12 deletions), so I'm clos

[issue28866] Type cache is not correctly invalidated on a class defining mro()

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +13074 ___ Python tracker <https://bugs.python.org/issue28866> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- stage: patch review -> backport needed ___ Python tracker <https://bugs.python.org/issue28795> ___ ___ Python-bugs-list mai

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread Julien Palard
Julien Palard added the comment: Thanks for reporting Jan! It's finally merged \o/ -- resolution: -> fixed stage: backport needed -> resolved status: open -> closed ___ Python tracker <https://bugs.pyth

[issue28795] Misleading stating, that SIGINT handler is installed by default

2019-05-07 Thread Julien Palard
Julien Palard added the comment: New changeset e85ef7a7eacdef2f43e6bf2e67f335100e7ef2da by Julien Palard in branch 'master': bpo-28795: Signal documentation: Fix misleading statement. (GH-13121) https://github.com/python/cpython/commit/e85ef7a7eacdef2f43e6bf2e67f335

[issue31200] address sanitizer build fails

2019-05-07 Thread Julien Palard
Julien Palard added the comment: Tried to reproduce it again, on master, but this does no longer segfault nor report leakages (as long as I use __INSURE__ using make -j18 profile-opt CFLAGS='-D__INSURE__') nor fail at build time. There's still a few memory warnings whil

[issue31589] Links for French documentation PDF is broken: LaTeX issue with non-ASCII characters?

2019-05-07 Thread Julien Palard
Julien Palard added the comment: The download links are now working, EWDurbin upgraded the servers and it solved a few issues, also now when a build fail we do no longer erase the old PDF, so the links should always work. Thanks for reporting and don't hesistate to open a new iss

[issue36830] Typo in collections.deque

2019-05-07 Thread Julien Palard
Julien Palard added the comment: I reopened the issue on the ja tracker: https://github.com/python/python-docs-ja/issues/20 and I'm closing it here. Thanks a lot keroru for reporting! -- stage: -> resolved status: pending -> closed ___

[issue32275] SSL socket methods don't retry on EINTR?

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- nosy: -mdk ___ Python tracker <https://bugs.python.org/issue32275> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20709] os.utime(path_to_directory): wrong documentation for Windows.

2019-05-07 Thread Julien Palard
Julien Palard added the comment: Closing this issue, it has been fixed a year ago, thanks Jan-Philip for reporting, Stéphane for fixing, and everybody! \o/ \o/ -- resolution: -> fixed stage: patch review -> resolved status: open -&g

[issue24712] Docs page's sidebar vibrates on mouse wheel scroll on Chrome.

2019-05-07 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +13095 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issue24712> ___ ___ Python-

[issue32393] nav menu jitter in old documentation

2019-05-07 Thread Julien Palard
Julien Palard added the comment: I'm closing this as a duplicate of https://bugs.python.org/issue24712, for which I opened a pull request. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Docs page's sidebar vibrates on

[issue33948] doc truncated lines in PDF

2019-05-07 Thread Julien Palard
Julien Palard added the comment: We recentrly upgraded our PDF build toolchain and I don't see it happen again. Don't hesitate to reopen if you find another occurence of it. Thanks for reporting! -- resolution: -> fixed stage: -> resolved status

[issue31873] Inconsistent capitalization of proper noun - Unicode.

2019-05-08 Thread Julien Palard
Julien Palard added the comment: New changeset 85225b6a58a516c50c055d5114668ed2fcdcda8c by Julien Palard (toonarmycaptain) in branch 'master': bpo-31873: Update unicode.rst - 'unicode' capitalization (GH-4125) https://github.com/python/cpython/commit/85225b6a58a516c50c05

[issue31873] Inconsistent capitalization of proper noun - Unicode.

2019-05-08 Thread Julien Palard
Julien Palard added the comment: I merged it, it's a small change that is consistent enough for me with the rest of the file and the doc. Marc-Andre is right though, and if anyone have the courage, the whole doc should be proofread to update accordingly, but let's make it a whol

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster bot (OpenSSL 1.1.1a)

2019-05-08 Thread Julien Palard
Julien Palard added the comment: I'm still seeing the issue on https://github.com/python/cpython/pull/12255 (freshly rebased to master to have 2cc0223f43a1ffd59c887a73e2b0ce5202f3be90. On this build: https://dev.azure.com/Python/cpython/_build/results?buildId=

[issue35925] test_httplib test_nntplib test_ssl fail on ARMv7 Debian buster bot (OpenSSL 1.1.1a)

2019-05-08 Thread Julien Palard
Julien Palard added the comment: 👍 -- ___ Python tracker <https://bugs.python.org/issue35925> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36864] Double Spaces in the documentation

2019-05-09 Thread Julien Palard
Julien Palard added the comment: Some people are liking the double space thing. Some are not. It's in the documentation style guide [1] and there's arond 20k use of it. I don't think we want to change it: modifing 18900 lines in the docs will make most opened PRs conflict

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-05-09 Thread Julien Palard
Julien Palard added the comment: New changeset afd1e6d2f0f5aaf4030d13342809ec0915dedf81 by Julien Palard in branch 'master': bpo-36239: Skip comments in gettext infos (GH-12255) https://github.com/python/cpython/commit/afd1e6d2f0f5aaf4030d13342809ec

[issue36239] gettext: GNUTranslations doesn't parse properly comments in description

2019-05-09 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue36853] inconsistencies in docs builds (Sphinx 2)

2019-05-09 Thread Julien Palard
Julien Palard added the comment: Hi Jaraco, We're using sphinx 1.8 in production (docs.python.org) but we're ready for sphinx 2 so we should upgrade, and when we'll upgrade, we'll upgrade it everywhere. You're right, `make venv` does not specify a version, at the

[issue32523] inconsistent spacing in changelog.html

2019-05-09 Thread Julien Palard
Julien Palard added the comment: New changeset 137be34180a20dba53948d126b961069f299f153 by Julien Palard in branch 'master': bpo-32523: Simplifying news entries with multiple paragraphs. (GH-8154) https://github.com/python/cpython/commit/137be34180a20dba53948d126b9610

[issue10536] Enhancements to gettext docs

2019-05-09 Thread Julien Palard
Change by Julien Palard : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue10536> ___ ___ Pyth

[issue34682] Typo reports on docs@

2019-05-13 Thread Julien Palard
Julien Palard added the comment: New changeset 074d7c44a474680122ed869bb6be89c1f4f18f12 by Julien Palard (Stéphane Wirtel) in branch '3.7': [3.7] bpo-34682: Wording and grammatical changes to the doc(https://docs.python.org/3) (GH-13120) (GH-13281) https://github.com/python/cpyt

[issue32430] Simplify Modules/Setup{,.dist,.local}

2018-01-20 Thread Julien Palard
Julien Palard added the comment: I don't see a use case where one want to edit a file without having his work being tracked by git, can someone shed a light to me on this? I understand that to modify a single configuration point (a path, whatever) a configure option is the right way a

[issue32613] Use PEP 397 py launcher in windows faq

2018-01-21 Thread Julien Palard
New submission from Julien Palard : The windows FAQ (https://docs.python.org/3.6/faq/windows.html) uses `python` to launch python, I think it should use the `py` python launcher from pep 397. -- assignee: mdk components: Documentation keywords: easy messages: 310385 nosy: mdk priority

[issue32701] Typo in quopri documentation

2018-01-28 Thread Julien Palard
New submission from Julien Palard : Spotted a typo in https://docs.python.org/3/library/quopri.html: "must be provideda" But I also can't extract the meaning of the sentence: > quotetabs, a flag which controls whether to encode embedded spaces and tabs > must be provi

[issue32701] Typo in quopri documentation

2018-01-28 Thread Julien Palard
Change by Julien Palard : -- keywords: +patch pull_requests: +5235 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue32701> ___ ___ Py

[issue32613] Use PEP 397 py launcher in windows faq

2018-02-05 Thread Julien Palard
Change by Julien Palard : -- keywords: +patch pull_requests: +5376 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue32613] Use PEP 397 py launcher in windows faq

2018-02-05 Thread Julien Palard
Julien Palard added the comment: The py command come from PEP 397, its rational will be more verbose than me [1], but in a nutshell it's a wrapper trying to find the right python according to some heuristics like the shebang. [1]: https://www.python.org/dev/peps/pep-0397/#rati

[issue32430] Simplify Modules/Setup{,.dist,.local}

2018-02-06 Thread Julien Palard
Julien Palard added the comment: Taking arguments into account, this solution may work: - Continue to distribute a Setup.dist - Add a configure option to change it, as Victor said --setup-file should do it, the default value should be Setup.dist - Remove the `cp Setup.dist Setup` This

[issue19675] Pool dies with excessive workers, but does not cleanup

2018-02-10 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +5424 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue19675> ___ ___ Python-bugs-list mai

[issue24665] CJK support for textwrap

2018-02-12 Thread Julien Palard
Julien Palard added the comment: I reread issue6755, issue12485, issue12499, and issue12568 about the textwrap/char width topic, and went to those conclusions: - It's a hard topic [1][2], so we may not succeed in a single shot. - The work is already done by wcwidth in the libc, which doe

[issue24665] CJK support for textwrap

2018-02-12 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +5450, 5451 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue24665> ___ ___ Python-bugs-lis

[issue24665] CJK support for textwrap

2018-02-12 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +5450 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue24665> ___ ___ Python-bugs-list mai

[issue32421] Keeping an exception in cache can segfault the interpreter

2018-03-15 Thread Julien Palard
Julien Palard added the comment: Serhiy: Sorry the ∈ comes from emacs' pretty-mode, I should copy from outside emacs. Version tested are listed in my previous message. -- ___ Python tracker <https://bugs.python.org/is

[issue31639] http.server and SimpleHTTPServer hang after a few requests

2018-03-23 Thread Julien Palard
Julien Palard added the comment: New changeset 8bcfa02e4b1b65634e526e197588bc600674c80b by Julien Palard in branch 'master': bpo-31639: Use threads in http.server module. (GH-5018) https://github.com/python/cpython/commit/8bcfa02e4b1b65634e526e197588bc

[issue31639] http.server and SimpleHTTPServer hang after a few requests

2018-03-23 Thread Julien Palard
Change by Julien Palard : -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/issue31639> ___ ___ Pyth

[issue31793] Allow to specialize smart quotes in documentation translations

2018-03-23 Thread Julien Palard
Julien Palard added the comment: Reopening as smart quotes is still a source of bugs in Japanese translation, see: https://github.com/python/docsbuild-scripts/issues/32#issuecomment-375801129 -- status: closed -> open ___ Python tracker <

[issue31584] Documentation Language mixed up

2018-04-10 Thread Julien Palard
Julien Palard added the comment: I think so, at least since https://github.com/python/docsbuild-scripts/pull/36 has been merged. -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracke

[issue33378] Add Korean to the language switcher

2018-04-28 Thread Julien Palard
Change by Julien Palard : -- assignee: mdk components: Documentation nosy: mdk priority: normal severity: normal status: open title: Add Korean to the language switcher ___ Python tracker <https://bugs.python.org/issue33

[issue33378] Add Korean to the language switcher

2018-04-28 Thread Julien Palard
Julien Palard added the comment: New changeset 577948329976985ea9bef23d9a6c3dd7108211bf by Julien Palard (Dong-hee Na) in branch 'master': bpo-33378: Add Korean to the language switcher. (GH-6627) https://github.com/python/cpython/commit/577948329976985ea9bef23d9a6c3d

[issue33378] Add Korean to the language switcher

2018-04-28 Thread Julien Palard
Change by Julien Palard : -- resolution: -> fixed stage: patch review -> backport needed ___ Python tracker <https://bugs.python.org/issue33378> ___ ___

[issue33378] Add Korean to the language switcher

2018-04-28 Thread Julien Palard
Change by Julien Palard : -- stage: backport needed -> resolved ___ Python tracker <https://bugs.python.org/issue33378> ___ ___ Python-bugs-list mailing list Un

[issue33378] Add Korean to the language switcher

2018-05-01 Thread Julien Palard
Julien Palard added the comment: Backported to 3.6. -- stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.org/i

[issue20709] os.utime(path_to_directory): wrong documentation for Windows.

2018-05-01 Thread Julien Palard
Julien Palard added the comment: New changeset 7508a54c77e85235e07e344cf9440e5b4695e9cc by Julien Palard (Stéphane Wirtel) in branch 'master': bpo-20709: os.utime(path_to_directory): wrong documentation for Windows. (GH-5469) https://github.com/python/cpyt

[issue31584] Documentation Language mixed up

2017-09-26 Thread Julien Palard
Julien Palard added the comment: Hi asl, thanks for reporting I'm looking at it. Thanks Mariatta for the notification. -- ___ Python tracker <https://bugs.python.org/is

[issue31584] Documentation Language mixed up

2017-09-26 Thread Julien Palard
Julien Palard added the comment: I'm currently unable to find any misplaced string... I suspect the "fast builds" may cause the bug and the "full build" may fix it, and I probably checked right after a full build. I'll test this locally soon (full build in one la

[issue31589] Links for French documentation pdf is broken

2017-09-26 Thread Julien Palard
Julien Palard added the comment: Hi Fabrice, Thanks for reporting. The whole archives/ directory is completly missing for french and japanese, I'll take a look. Bug is probably really near https://github.com/python/docsbuild-scripts/blob/master/build_docs.py

[issue31584] Documentation Language mixed up

2017-09-27 Thread Julien Palard
Julien Palard added the comment: Local builds were not able to reproduce the bug for the moment and I did not spotted the bug on production neither. If anyone see it please write down the URL, the misplaced translation, and the date, time, timezone on which the string was found, so I can

[issue31584] Documentation Language mixed up

2017-09-27 Thread Julien Palard
Julien Palard added the comment: Thanks for those details. Until we find japanese on a french page, or french on an english page, which would clearly disproove the hypothesis of a build picking up translated files from a previous build, I still consider this hypothesis the good one. I&#

<    1   2   3   4   5   6   7   >