[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: +1 -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue36004> ___ ___ Python-bugs-list mailing list Unsub

[issue35986] print() documentation typo?

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: not in the CPython repo, just ask to regenerate the PyPI package. thanks -- ___ Python tracker <https://bugs.python.org/issue35

[issue36000] __debug__ is a keyword but not a keyword

2019-02-15 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue36000> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35986] print() documentation typo?

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thanks @cheryl but we need to have a new package of python-docs-theme. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: here is the stderr.txt -- Added file: https://bugs.python.org/file48144/stderr.txt ___ Python tracker <https://bugs.python.org/issue35

[issue35998] ./python -m test test_asyncio fails

2019-02-15 Thread Stéphane Wirtel
New submission from Stéphane Wirtel : == ERROR: test_start_tls_server_1 (test.test_asyncio.test_sslproto.SelectorStartTLSTests) -- Traceback (most recent call

[issue35899] '_is_sunder' function in 'enum' module fails on empty string

2019-02-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Brennan, Normally, you wanted to work on this issue and you have waited for one week after the last message of Maxwell. Do you want to work on this issue and submit your PR? Have a nice day, Stéphane

[issue24658] open().write() and .read() fails on 2 GB+ data (OS X)

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi @barry normally this issue is fixed for 3.x but I need to finish my PR for 2.7. I think to fix for 2.7 in the next weeks. -- ___ Python tracker <https://bugs.python.org/issue24

[issue35997] ImportError: dlopen failed: cannot locate symbol "PyBool_Type"

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thank you, but I think there is missing info with your script. Do you have a shell script to share? What are the values of: ANDROID_TARGET ANDROID_API CC++ BIN_UTILS_PREFIX etc... For example, if I want to use a docker image on my Fedora, how can I compile

[issue35997] ImportError: dlopen failed: cannot locate symbol "PyBool_Type"

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: if you have compiled python with --enable-shared you will get a lib/libpython3.Xdm.so file and you can use nm -D lib/libpython3.Xdm.so | grep PyBool_Type nm --debug-syms lib/libpython3.8dm.so | grep PyBool

[issue35997] ImportError: dlopen failed: cannot locate symbol "PyBool_Type"

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Can you see the symbols when you use nm or readelf? -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35

[issue35145] sqlite3: optionally autoconvert table_info's DATETIME fields

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi @jondo, Of course you can submit a PR and we can help you with a review if we have time because we are volunteers and it's in function of our free time. Have a nice day, -- ___ Python tracker &

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

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I propose to create a SMTPSSLHandler class and submit a PR. -- ___ Python tracker <https://bugs.python.org/issue35995> ___ ___

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

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is my suggestion class SMTPSSLHander(SMTPHandler): def emit(self, record): """ Emit a record. Format the record and send it to the specified addressees. """ try: i

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

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: @lidayan I have checked the code of your PR, and I think there is an issue with your code. 1. When you specify the secure flag to the SMTPHandler, it's because you will start the TLS connection if the SMTP server supports the STARTTLS. First

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

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I re-open this issue because after the change of the subject, maybe there is an issue with the code of logging.handler.SMTPHandler + TLS. -- resolution: rejected -> status: closed -> open ___ Python t

[issue20523] global .pdbrc on windows 7 not reachable out of the box

2019-02-14 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- pull_requests: +11887 ___ Python tracker <https://bugs.python.org/issue20523> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35995] logging.handlers.SMTPHandler

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: You have a timeout, maybe you have an issue with your SMTP server. But in this case, it's not an issue with Python. -- nosy: +matrixise resolution: -> rejected stage: -> resolved status: ope

[issue35993] incorrect use of released memory in Python/pystate.c line 284

2019-02-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: What do you think of this solution? -- nosy: +vstinner stage: patch review -> ___ Python tracker <https://bugs.python.org/issu

[issue35993] incorrect use of released memory in Python/pystate.c line 284

2019-02-14 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +11884 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35993> ___ ___ Py

[issue35993] incorrect use of released memory in Python/pystate.c line 284

2019-02-13 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- assignee: -> matrixise nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35993> ___ ___ Python-bugs-list mai

[issue35989] ipaddress.IPv4Network allows prefix > 32

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I proposed my PR but I prefer a review because in the code of ipaddress, there is a function for the validation of an address with the netmask. Maybe we could use this function and try to refactor/improve the current code. -- nosy: +matrixise

[issue35989] ipaddress.IPv4Network allows prefix > 32

2019-02-13 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +11875 stage: test needed -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35986] print() documentation typo?

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: @steven I have a solution with a css selector if we update the python-docs theme for Sphinx. You can check my screenshot -- nosy: +matrixise Added file: https://bugs.python.org/file48136/print_screenshot.png

[issue33524] non-ascii characters in headers causes TypeError on email.policy.Policy.fold

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: See this issue as a duplicata of this one: https://bugs.python.org/issue35985 -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue33

[issue35985] Folding tries to slice from 0 to float("+inf") when maxlength is 0

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Just add the link to the other issue: https://bugs.python.org/issue33524 -- ___ Python tracker <https://bugs.python.org/issue35

[issue35985] Folding tries to slice from 0 to float("+inf") when maxlength is 0

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Could you share your example? Thank you -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35985> ___ ___

[issue35899] '_is_sunder' function in 'enum' module fails on empty string

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi, I have created the PR for Maxwell. After tomorrow, if we have no news from him, I propose to you to update/comment the PR. Of course, I will add a co-authored-by field in the commit. -- keywords: -patch nosy: +matrixise stage: patch review

[issue35899] '_is_sunder' function in 'enum' module fails on empty string

2019-02-13 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +11870 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35982] Create unit-tests for os.renames()

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Giampaolo, I added you to this issue, about the tests, I have created a very simple test but I would like to know your advice. Thank you, -- nosy: +giampaolo.rodola ___ Python tracker <ht

[issue35983] tp_dealloc trashcan shouldn't be called for subclasses

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Jeroen, could you share your example? I am learning the C-API of Python and this example could be interesting. -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35

[issue35982] Create unit-tests for os.renames()

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ok, I have created a PR, you can comment it and we can work together on this PR. Have a nice day, Stéphane -- stage: patch review -> ___ Python tracker <https://bugs.python.org/issu

[issue35982] Create unit-tests for os.renames()

2019-02-13 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +11868 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35982> ___ ___ Py

[issue35982] Create unit-tests for os.renames()

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: You can check this branch, but I have not created the PR because you were working on this issue. https://github.com/matrixise/cpython/commit/3f23deceef423b038273d28080d4aaee664b6bc9 -- ___ Python tracker <ht

[issue35982] Create unit-tests for os.renames()

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ok, I was working on this issue. -- ___ Python tracker <https://bugs.python.org/issue35982> ___ ___ Python-bugs-list mailin

[issue35982] Create unit-tests for os.renames()

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: good catch -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35982> ___ ___ Python-bugs-list mailin

[issue35981] shutil make_archive create wrong file when base name contains dots at end

2019-02-13 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I have just tried with 3.7.2 and I don't get your error. Python 3.7.2 (default, Jan 16 2019, 19:49:22) [GCC 8.2.1 20181215 (Red Hat 8.2.1-6)] on linux Type "help", "copyright", "credits" or "license" for more

[issue2771] Test issue

2019-02-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: irc pong -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue2771> ___ ___ Python-bugs-list mailing list Unsub

[issue35921] Use ccache by default

2019-02-08 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi @Raymond I use this script since 1 year for the compilation of Python, https://github.com/python/cpython/pull/11773#issuecomment-461179522 #!/usr/bin/env fish set number_of_cpu (python3 -c "import os; print(os.sysconf('SC_NPROCE

[issue35938] crash of METADATA file cannot be fixed by reinstall of python

2019-02-08 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: hi @xtreak because I don't have a windows vm with me, I can't reproduce this issue, but maybe this issue is related with ensurepip or just with pip. when I have seen this issue, my first reaction was "it's not related to python

[issue35921] Use ccache by default

2019-02-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: time -p make CC="/usr/bin/ccache gcc" --jobs 4 --silent > stdout.txt ^ stderr.txt real 4.36 user 3.69 sys 1.73 on a 4-thread CPU i7-7560U CPU @ 2.40GHz -- nosy: +matrixise ___ Python tr

[issue35910] Curious problem with my choice of variables

2019-02-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Phil, This bug tracker is more for the core-dev and the contributors of CPython. I suggest to you to use the right mailing list for your issues. or use #python-fr on freenode Mailing list: https://mail.python.org/mailman/listinfo/python-list I close

[issue35907] Unnecessary URL scheme exists to allow file:// reading file in urllib

2019-02-06 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- nosy: +christian.heimes, martin.panter, matrixise ___ Python tracker <https://bugs.python.org/issue35907> ___ ___ Python-bugs-list m

[issue35906] Header Injection in urllib

2019-02-06 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- pull_requests: -11730 ___ Python tracker <https://bugs.python.org/issue35906> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35906] Header Injection in urllib

2019-02-06 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- pull_requests: -11731 ___ Python tracker <https://bugs.python.org/issue35906> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35906] Header Injection in urllib

2019-02-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi all, Not sure for the right way for this fix but here is a PR. I am interested by your feedback. Thank you -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35

[issue35906] Header Injection in urllib

2019-02-06 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +11729 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35906> ___ ___ Py

[issue35906] Header Injection in urllib

2019-02-06 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch, patch, patch pull_requests: +11729, 11730, 11731 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35906] Header Injection in urllib

2019-02-06 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch, patch pull_requests: +11729, 11730 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

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

2019-02-05 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ping ned, do we have a solution for this issue? Thank you, Stéphane -- ___ Python tracker <https://bugs.python.org/issue35

[issue35358] Document that importlib.import_module accepts names that are not valid Python syntax

2019-02-05 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I close this issue, thank you for your feedback. -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35895] the test suite of pytest failed with 3.8.0a1

2019-02-05 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Guido, The team of Pytest has been informed and after a small discussion, it seems it's a problem with the way they use the AST for the assert keyword. They know the issue, I hope they will fix it asap. I would like to test pytest with 3.8 ;-)

[issue35895] the test suite of pytest failed with 3.8.0a1

2019-02-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: maybe, I don't know but I have tested with pytest because the tests with requests did not work. I prefered to create this issue and the same issue on the bug tracker of pytest. -- ___ Python tracker &

[issue35895] the test suite of pytest failed with 3.8.0a1

2019-02-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is the issue in the bug tracker of pytest https://github.com/pytest-dev/pytest/issues/4716 -- ___ Python tracker <https://bugs.python.org/issue35

[issue35895] the test suite of pytest failed with 3.8.0a1

2019-02-04 Thread Stéphane Wirtel
New submission from Stéphane Wirtel : I have execute the tests of pytest with 3.8.0a1 and I get some issues, it's not the case with 3.7.x (see the travis logs of pytest, https://travis-ci.org/pytest-dev/pytest/branches) I am going to create the same issue for pytest. -- files

[issue35435] Documentation of 3.3 is available

2018-12-06 Thread Stéphane Wirtel
New submission from Stéphane Wirtel : Today, I was looking for the doc of unittest.mock and the result from DuckDuckGo was this link: https://docs.python.org/3.3/library/unittest.mock-examples.html In the devguide, we stopped the support and everything about this version, in the bug tracker

[issue35358] avoid '-' in importlib.import_module and builtins.__import__

2018-11-30 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: hi @serhiy, I understand but today, by error my CI has started to run the tests of an external python package and in the tests, there was a lot of `from my-module import XYZ` but in the django project, they load this module via importlib.import_module or

[issue35358] avoid '-' in importlib.import_module and builtins.__import__

2018-11-30 Thread Stéphane Wirtel
New submission from Stéphane Wirtel : maybe related to this issue: https://bugs.python.org/issue18831 we can't import a module where the name contains '-', for example from my-module import my_function but with importlib.import_module we can import this module. import_

[issue35244] Allow to setup Clang as default compiler for modules build

2018-11-19 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Of course you can, good luck, if you need help ping us. -- ___ Python tracker <https://bugs.python.org/issue35244> ___ ___

[issue35244] Allow to setup Clang as default compiler for modules build

2018-11-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I confirm the issue, the main issue we have to support the CLang compiler into distutils. -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35

[issue35244] Allow to setup Clang as default compiler for modules build

2018-11-14 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35244> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35213] IDLE: use 'macOS' where appropriate.

2018-11-12 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ;-) just a joke. I have reviewed your PR, but do you count with the occurences of "OS X", it's the abbreviation of "MacOS X"? -- ___ Python tracker <https:

[issue35215] Replacing CPython memory allocation

2018-11-12 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: You have the issue with your functions, not with Python. Are you sure you do not have an issue with your code? -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue35

[issue35216] misleading error message from shutil.copy()

2018-11-12 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: @vstinner & @serhiy What do you think about this issue? For the same POSIX syscall (open) we get 2 different values for the error, 2 on macOS and EISDIR with Linux. Is a bug in Python or with the compliance of the operating system and the POSIX

[issue35216] misleading error message from shutil.copy()

2018-11-12 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: This error is specific to the C-API and not to Python, here is an example. #include #include #include #include #include int main(int argc, char **argv, char **environ) { int fd; fd = open("/tmp/toto/", O_CREAT); printf("file

[issue35216] misleading error message from shutil.copy()

2018-11-12 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: You have the issue with the built-in 'open' function. -- nosy: +matrixise ___ Python tracker <https://bugs.python.o

[issue35213] IDLE: use 'macOS' where appropriate.

2018-11-12 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: @terry, I suppose you wanted to say "macOs" and not "maxOs" -- nosy: +matrixise ___ Python tracker <https://bug

[issue10536] Enhancements to gettext docs

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue10536> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10536] Enhancements to gettext docs

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Serhiy & Éric, I have ported the patch to a PR for master (3.8). I have removed the double spaces and some useless diffs. You will find my diff file I have used for the PR. the git revision was 5d744a8855bb4d411e5f32cfd365f0581e30ef48 Author: Stefan

[issue10536] Enhancements to gettext docs

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- pull_requests: +9627 ___ Python tracker <https://bugs.python.org/issue10536> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10536] Enhancements to gettext docs

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Serhyi and Eric, for which version of Python, only 2.7? or master, 3.6 & 3.7? -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/iss

[issue33486] regen autotools related files

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- pull_requests: +9626 stage: commit review -> patch review ___ Python tracker <https://bugs.python.org/issue33486> ___ ___ Python-

[issue33486] regen autotools related files

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Ned, thanks for this clarification -- nosy: +matrixise ___ Python tracker <https://bugs.python.org/issue33486> ___ ___ Pytho

[issue35157] Missing pyconfig.h when building from source and pgo flag is enabled

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Jorge, I am really sorry but I don't have any issue for the compilation of Python 3.6 under Windows 8.1 C:\Users\pydev\cpython-bpo-35157>PCbuild\amd64\python.exe -m test.py

[issue35145] sqlite3: "select *" should optionally sniff and autoconvert TEXT datetime fields

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ok in this case, I re-open the issue. -- resolution: fixed -> status: closed -> open ___ Python tracker <https://bugs.python.org/i

[issue35145] sqlite3: "select *" should optionally autoconvert TEXT datetime fields

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: For my part, we could close this issue just because I am sure they sniff the format of the string. If you use sqliteman you get a TEXT and not "datetime" You can read this doc about the read_sql https://pandas.pydata.org/pandas-docs/stable

[issue35157] Missing pyconfig.h when building from source and pgo flag is enabled

2018-11-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I started a compilation with PCBuild\build.bat -d -p x64 -r --pgo on a Windows machine but I am not the owner of this machine. -- nosy: +matrixise, zach.ware title: Missing pyconfig.h when building from source -> Missing pyconfig.h when build

[issue35157] Missing pyconfig.h when building from source and pgo flag is enabled

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden ___ Python tracker <https://bugs.python.org/issue35157> ___ ___

[issue35159] Add a link to the devguide in the sidebar of the documentation

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- versions: +Python 2.7, Python 3.6, Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35159> ___ ___ Python-bug

[issue35159] Add a link to the devguide in the sidebar of the documentation

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- nosy: +mdk ___ Python tracker <https://bugs.python.org/issue35159> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35159] Add a link to the devguide in the sidebar of the documentation

2018-11-04 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +9618 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35159> ___ ___ Py

[issue35159] Add a link to the devguide in the sidebar of the documentation

2018-11-04 Thread Stéphane Wirtel
New submission from Stéphane Wirtel : I think a link to the devguide could be useful for a future contributor and the right place could be the sidebar in the index page. -- assignee: docs@python components: Documentation messages: 329219 nosy: docs@python, matrixise priority: normal

[issue35153] Allow to set headers in xmlrpc.client.ServerProxy

2018-11-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ok +1 for me and I understand the need. But there is no defined experts for the xmlrpc part. We have to wait for a review just for the feature. -- ___ Python tracker <https://bugs.python.org/issue35

[issue27321] Email parser creates a message object that can't be flattened

2018-11-03 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- versions: +Python 3.8 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue27321> ___ ___ Python-bugs-list mailin

[issue17305] IDNA2008 encoding is missing

2018-11-03 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- nosy: -matrixise ___ Python tracker <https://bugs.python.org/issue17305> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35109] Doctest in CI uses python binary built from master causing DeprecationWarnings

2018-11-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I think we could close this issue because the DeprecationWarnings are not related to Python itself but to the dependencies. We could open an issue about the DeprecationWarnings and the dependency like python-babel (thanks for the issue). @mdk? Can we close

[issue35153] Allow to set headers in xmlrpc.client.ServerProxy

2018-11-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: and could you add some tests for this new feature? Thank you. -- ___ Python tracker <https://bugs.python.org/issue35

[issue35032] Remove the videos from faq/Windows

2018-11-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I close this issue because all the PR and backports (3.7, 3.6 & 2.7) are merged. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https:/

[issue35153] Allow to set headers in xmlrpc.client.ServerProxy

2018-11-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Do you have an example where we need to have extra headers? but +1 for the feature, I marked this issue for 3.8 -- nosy: +matrixise versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue34945] regression with ./python -m test and pdb

2018-10-29 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Pablo, I have tested your PR and I get the prompt of pdb only if I use -v on the command line. For the print() function, I understand but for the pdb.set_trace() function, normally we should have the prompt even we don't specify the --verbose flat. D

[issue34969] Add --fast, --best to the gzip CLI

2018-10-29 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi @Serhiy I would like to add them on lzma, bz2, zipfile and tarfile. -- ___ Python tracker <https://bugs.python.org/issue34

[issue35069] Unexecuted import in function causes UnboundLocalError

2018-10-25 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Steven, Sure, I am going to explain, I was at the social event of PyCon Germany without my laptop and the code was not really clear on my smartphone. I wanted to know if there was an indentation issue. It's also the reason for my big reply wit

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

2018-10-25 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: thanks ned -- ___ Python tracker <https://bugs.python.org/issue35055> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35038] AttributeError: 'frame' object has no attribute 'f_restricted'

2018-10-25 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: all the PRs have been merged, we can close this issue. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue35069] Unexecuted import in function causes UnboundLocalError

2018-10-25 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Could you share a pastebin? Thank you > Le 25 oct. 2018 à 21:28, James Hewitt a écrit : > > > New submission from James Hewitt : > > Having 'import logging.config' in an if statement in a function causes a > namespace i

[issue35038] AttributeError: 'frame' object has no attribute 'f_restricted'

2018-10-25 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I have proposed a PR. -- keywords: -patch nosy: +matrixise stage: patch review -> needs patch ___ Python tracker <https://bugs.python.org/issu

[issue35038] AttributeError: 'frame' object has no attribute 'f_restricted'

2018-10-25 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- keywords: +patch pull_requests: +9431 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35066] Inconsistency between dangling '%' handling in time.strftime() and datetime.strftime()

2018-10-25 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: for me, yep normally we should provide the same behavior. now, if you want, you can submit a PR but before your PR, you have to sign the CLA. thanks -- nosy: +matrixise ___ Python tracker <ht

[issue35060] subprocess output seems to depend on size of terminal screen

2018-10-24 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is the doc from ps with man. > man ps If ps cannot determine display width, as when output is redirected (piped) into a file or another command, the output width is undefined (it may be 80, unlimited, determined by the TERM variable, and so on).

[issue35060] subprocess output seems to depend on size of terminal screen

2018-10-24 Thread Stéphane Wirtel
Change by Stéphane Wirtel : -- status: open -> closed ___ Python tracker <https://bugs.python.org/issue35060> ___ ___ Python-bugs-list mailing list Unsubscrib

<    1   2   3   4   5   6   7   8   9   10   >