[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-17 Thread emmanuel
Changes by emmanuel : -- nosy: +emmanuel ___ Python tracker <http://bugs.python.org/issue14916> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-17 Thread emmanuel
emmanuel added the comment: run the attached shell script to observe the bug ./bug.sh 0 -> shows the bug ./bug.sh 1 -> shows the expected behaviour (using a workaround) tested on linux with python 2.7 -- Added file: http://bugs.python.org/file29431/

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-17 Thread emmanuel
Changes by emmanuel : Added file: http://bugs.python.org/file29432/bug.sh ___ Python tracker <http://bugs.python.org/issue14916> ___ ___ Python-bugs-list mailin

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-17 Thread emmanuel
Changes by emmanuel : Removed file: http://bugs.python.org/file29431/bug.sh ___ Python tracker <http://bugs.python.org/issue14916> ___ ___ Python-bugs-list mailin

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-17 Thread emmanuel
emmanuel added the comment: Kevin, Indeed the code I submitted can be written entirely in C using pipe fork execl dup2 etc. as you suggest. The only purpose of mixing bash and C is to have a short self-contained file showing the problem. Anyway, whether in C or bash the workaround is less

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-18 Thread emmanuel
emmanuel added the comment: Kevin, These are good points. I had a cursory look at the python source code and observed the following: - There may also be a concern with stderr (used to print the prompt in PyOS_Readline) - PyOS_Readline has two different definitions in files pgenmain.c and

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-20 Thread emmanuel
emmanuel added the comment: Kevin, I've read more carefully your messages and investigated some more. It seems that there are several issues: 1/ To take input from a defined tty without interfering with standard file descriptors 2/ To have the result (object) of evaluation printed to a de

[issue14916] PyRun_InteractiveLoop fails to run interactively when using a Linux pty that's not tied to stdin/stdout

2013-03-25 Thread emmanuel
emmanuel added the comment: Kevin, I now fully agree with you. Regarding points 2 & 3 I dismissed modifying sys.stdin/out in python out of hand because it still would not allow to have a proper behaviour with two concurrent consoles on the same interpreter. Anyway this is not a

[issue6717] Some problem with recursion handling

2011-05-27 Thread Emmanuel Decitre
Emmanuel Decitre added the comment: Issue reproduceable on 3.2 (r32:88445) with drag_bug_is_nesting_events.py -- nosy: +Emmanuel.Decitre ___ Python tracker <http://bugs.python.org/issue6

[issue19820] docs are missing info about module attributes

2019-08-14 Thread Emmanuel Arias
Emmanuel Arias added the comment: > I can update the docs but I would rely on the comments in Lib/inspect.py on > what to include. Executing inspect.getmembers on a module returns a lot more > attributes than documented in ismodule. I can help too. -- nosy

[issue38067] Add headers parameter on RobotFileParser

2019-09-09 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hello I open an issue from a PR that I think need discussion: I write here the @fuwaraido's PR description: > I found some website like "sony.co.jp" requests User-Agent field in headers > when I try to fetch their robots.txt. Un

[issue38224] Windows embeddable distribution doesn't ship headers

2019-09-19 Thread Leblond Emmanuel
New submission from Leblond Emmanuel : I don't understand why the headers are not provided as part of the distribution. It would be really easy to rm them once the distribution extracted for usecases that don't need them. On the other hand, usecases that need them cannot just do

[issue38225] iscoroutinefunction broken with cython - allow tagging of functions as async?

2019-09-20 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38225> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38260] asyncio.run documentation does not mention its return value

2019-09-23 Thread Emmanuel Arias
Emmanuel Arias added the comment: So, I think that will return the Future's return, isn't? I will propose a PR for this -- nosy: +eamanu ___ Python tracker <https://bugs.python.o

[issue38260] asyncio.run documentation does not mention its return value

2019-09-23 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +15914 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16337 ___ Python tracker <https://bugs.python.org/issu

[issue38172] Python 3.8 Segfult with Bandersnatch pytest Suite

2019-09-24 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38172> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38255] Replace "method" with "attribute" in the description of super()

2019-09-24 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38255> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38293] Deepcopying property objects results in unexpected TypeError

2019-09-27 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38293> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38293] Deepcopying property objects results in unexpected TypeError

2019-09-27 Thread Emmanuel Arias
Emmanuel Arias added the comment: I can confirm this behavior also on python 3.6 3.8 3.9 -- versions: +Python 3.6, Python 3.8, Python 3.9 ___ Python tracker <https://bugs.python.org/issue38

[issue38332] invalid content-transfer-encoding in encoded-word causes KeyError

2019-09-30 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38332> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38332] invalid content-transfer-encoding in encoded-word causes KeyError

2019-09-30 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello, I am not a email expert, but according to RFC 1342 the enconding can be either "B" or "Q". So, I think is reasonable that when a not correct enconding is set, should be raise an exception I think that we can improve the me

[issue38332] invalid content-transfer-encoding in encoded-word causes KeyError

2019-10-01 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Andrei sorry for my last message. Now I understand perfectly your idea and your PR. IMO this is a correct patch. -- ___ Python tracker <https://bugs.python.org/issue38

[issue36953] Remove collections ABCs?

2019-10-07 Thread Emmanuel Arias
Emmanuel Arias added the comment: Now was remove from 3.7 https://github.com/python/cpython/commit/ef092fe9905f61ca27889092ca1248a11aa74498 This issue should be closed, isn't? -- ___ Python tracker <https://bugs.python.org/is

[issue38554] A fatal error in test_descr

2019-10-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: I can't reproduce the error -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38554> ___ ___ Python-bugs-l

[issue38554] A fatal error in test_descr

2019-10-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: I' am using: Python 3.9.0a0 (heads/master:f548a3e4a2, Oct 22 2019, 12:02:14) [GCC 6.3.0 20170516] On Debian 9 -- ___ Python tracker <https://bugs.python.org/is

[issue38567] urllib.parse.unquote_plus raises incorrect error message when string parameter is bytes

2019-10-23 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu title: urllib.parse.unquote_plus raises incorrect errormessage when string parameter is bytes -> urllib.parse.unquote_plus raises incorrect error message when string parameter is bytes ___ Python trac

[issue38430] Memory leak in ThreadPoolExecutor + run_in_executor

2019-11-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38430> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38430] Memory leak in ThreadPoolExecutor + run_in_executor

2019-11-03 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +16551 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17038 ___ Python tracker <https://bugs.python.org/issu

[issue38599] Deprecate creation of asyncio object when the loop is not running

2019-11-06 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38599> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38599] Deprecate creation of asyncio object when the loop is not running

2019-11-06 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, @asvetlov are you thinking something like the patch attached? -- keywords: +patch Added file: https://bugs.python.org/file48697/0001-Add-a-deprectation-warning-for-queue-w-o-event-runni.patch ___ Python

[issue37784] Compiling Python 3 with sqlite impossible when sqlite installation is in a non standard directory

2019-11-08 Thread Emmanuel C
Emmanuel C added the comment: Sorry guy, I've found my error : I have to use the CPPFLAGS instead of the CFLAGS in order to include sqlite3 into my own Python compiled installation. -- resolution: -> not a bug stage: -> resolved status: ope

[issue43623] nouveauté 2021

2021-03-25 Thread Emmanuel Miranda
New submission from Emmanuel Miranda : Avec un nouveau cycle de release annuel la communauté Python ne cesse d’aller de l’avant hâte de voir ce qu’ils nous réservent pour 2021 après la version 3.10 ! En espérant que les applicatifs suivent pour supporter https://webscre.com

[issue28806] Improve the netrc library

2021-05-24 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +24922 pull_request: https://github.com/python/cpython/pull/26330 ___ Python tracker <https://bugs.python.org/issue28

[issue28806] Improve the netrc library

2021-05-24 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello everybody I've just make this PR https://github.com/python/cpython/pull/26330 to continue the work. -- ___ Python tracker <https://bugs.python.org/is

[issue34908] netrc parsing is overly strict

2021-05-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue34908> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34908] netrc parsing is overly strict

2021-05-28 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hellos, This issue is fixed via this PR[0] that is a continues from xiang.zhang work [1] [0] https://github.com/python/cpython/pull/26330 [1] https://github.com/python/cpython/pull/127 -- ___ Python tracker

[issue44221] ImportError: sys.meta_path is None, Python is likely shutting down

2021-06-09 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello, Can you please provide a piece of code to reproduce the issue? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue44

[issue14322] More test coverage for hmac

2021-06-17 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue14322> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44405] add program passed as string to dis module.

2021-06-17 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue44405> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44324] add a "expected expression" syntax error

2021-06-17 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue44324> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue44779] Checkouts stale following changes to .gitattributes

2021-07-31 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue44779> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20779] Add pathlib.chown method

2021-08-01 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello! I also use it frequently, but looking this issue I can agree with pitrou that there aren't lot of people that use chown. If I'm not wrong, there's a trend to move os to pathlib, perhaps chown should be in pathlib too :) I c

[issue20779] Add pathlib.chown method

2021-08-01 Thread Emmanuel Arias
Change by Emmanuel Arias : -- versions: +Python 3.11 -Python 3.5 ___ Python tracker <https://bugs.python.org/issue20779> ___ ___ Python-bugs-list mailin

[issue36287] Make ast.dump() not output optional default fields

2019-11-18 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, Sorry sincerely I forgot this issue, if there are not any objection I can continue it. -- ___ Python tracker <https://bugs.python.org/issue36

[issue37334] Add a cancel method to asyncio Queues

2019-11-22 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue37334> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38903] #if 0 block on parsetok.c

2019-11-23 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi, I can see that on parsetok.c there is the next block: ``` #ifdef PY_PARSER_REQUIRES_FUTURE_KEYWORD #if 0 static const char with_msg[] = "%s:%d: Warning: 'with' will become a reserved keyword in Python 2.6\n"; static const ch

[issue38903] #if 0 block on parsetok.c

2019-11-23 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +16850 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17365 ___ Python tracker <https://bugs.python.org/issu

[issue38960] DTrace FreeBSD build fix

2019-12-03 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue38960> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38599] Deprecate creation of asyncio object when the loop is not running

2020-01-26 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +17576 stage: -> patch review pull_request: https://github.com/python/cpython/pull/18195 ___ Python tracker <https://bugs.python.org/issu

[issue39659] pathlib calls `os.getcwd()` without using accessor

2020-02-17 Thread Emmanuel Arias
Emmanuel Arias added the comment: Sorry, I cannot catch what is the problem of not use _Accesor on PurePath class -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue39

[issue39953] Let's update ssl error codes

2020-03-13 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue39953> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40052] Incorrect pointer alignment in _PyVectorcall_Function() of cpython/abstract.h

2020-03-24 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! I cannot reproduce the error. Could you provide the way to reproduce? thanks -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue40

[issue39159] Ideas for making ast.literal_eval() usable

2020-05-04 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue39159> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43025] Use normal 'i' character to denote imaginary part of complex numbers

2021-01-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: Personally, it's more natural use 'j' for complex number, but it's true that in many math book (or that I used) letter 'i' is used. Now, it's feasible change i for j on cpython? Asking from my ignorance on th

[issue43025] Use normal 'i' character to denote imaginary part of complex numbers

2021-01-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Now, it's feasible change i for j on cpython? Asking from my ignorance on > this case. j for i, sorry -- ___ Python tracker <https://bugs.python.

[issue42464] Pathlib resolve() resolves non-existent ".." components with strict=False

2021-02-01 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, I don't understand the point here. If you go back on a folder '..', IMO has more sense remove the '..', that is a way to resolve it -- nosy: +eamanu ___ Python tracker <https:

[issue43063] zipfile.Path / importlib.resources raises KeyError if a file wasn't found

2021-02-01 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue43063> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43225] Add missing value returned by methods on cookiejar

2021-02-14 Thread Emmanuel Arias
New submission from Emmanuel Arias : Documentation say that return something but don't specific what value is returned, and that can be confuse. -- assignee: docs@python components: Documentation messages: 386961 nosy: docs@python, eamanu priority: normal severity: normal status:

[issue43225] Add missing value returned by methods on cookiejar

2021-02-14 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +23314 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24522 ___ Python tracker <https://bugs.python.org/issu

[issue43225] Add missing value returned by methods on cookiejar

2021-02-14 Thread Emmanuel Arias
Emmanuel Arias added the comment: Sorry I left nothing of information. On https://docs.python.org/3/library/http.cookiejar.html?highlight=http%20cookiejar#http.cookiejar.DefaultCookiePolicy.is_blocked and https://docs.python.org/3/library/http.cookiejar.html?highlight=http%20cookiejar

[issue43253] asyncio open_connection fails when a socket is explicitly closed

2021-02-18 Thread Emmanuel Arias
Emmanuel Arias added the comment: I cannot reproduce on a Debian machine. Seems to be a Windows component issue? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue43

[issue43253] asyncio open_connection fails when a socket is explicitly closed

2021-02-18 Thread Emmanuel Arias
Change by Emmanuel Arias : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker <https://bugs.python.org/issue43

[issue43352] Add a Barrier object in asyncio lib

2021-03-05 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue43352> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40696] "await" hangs in Python3.9.0b1.

2020-05-20 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue40696> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41020] Could not build the ssl module!

2020-06-17 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, All issue opened seems to be the same: https://bugs.python.org/issue41019 https://bugs.python.org/issue41018 https://bugs.python.org/issue41017 https://bugs.python.org/issue41016 https://bugs.python.org/issue41015 https://bugs.python.org/issue41014 Maybe

[issue24905] Allow incremental I/O to blobs in sqlite3

2020-06-23 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi everybody, I let a comment on github. I was asking about if are there some plans with this PR? Was open 3 years ago and there are not updating Cheers -- nosy: +eamanu ___ Python tracker <ht

[issue28806] Improve the netrc library

2020-06-23 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! I let a comment on github. The PR was open 3 years agot, so I was wandering to know if are there some plans with that PR? Are you interested on the PR? Cheers, -- nosy: +eamanu ___ Python tracker <ht

[issue41115] Codecs should raise precise UnicodeDecodeError or UnicodeEncodeError

2020-06-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, IMO this can be mark as an easy issue. @thatiparthy please, go ahead -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41098> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: Yes, IMO in docs must exist a deprecated directive entry for `PyUnicodeEncodeError_Create`. Is the same situation with `PyUnicodeTranslateError_Create`, isn't? -- ___ Python tracker <https://bugs.py

[issue41098] Deprecating PyUnicodeEncodeError_Create

2020-06-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: oops, I didn't see. Thanks -- ___ Python tracker <https://bugs.python.org/issue41098> ___ ___ Python-bugs-list m

[issue41100] Build failure on macOS 11 (beta)

2020-07-01 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41100> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41137] pdb uses the locale encoding for .pdbrc

2020-07-01 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41137> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41217] Obsolete note for default asyncio event loop on Windows

2020-07-06 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41217> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41045] f-string's "debug" feature is undocumented

2020-07-13 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41045> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41316] tarfile: Do not write full path in FNAME field

2020-07-16 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, If I understand correctly, the name that you are using into the tar is the basename of the file. I didn't test it yet, but this PR will remove the possibility to create a file into the tar using the source tree folder? Maybe we can think about impl

[issue41378] IDLE EOL convention not set on a empty file

2020-07-23 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello everybody! When a new file is loaded, the current loadfile read for the newline to set the eol_convention. As does not exist for a empty file a None is saved and for that reason the exception is raised If you consider that this patch is correct I cant

[issue41373] IDLE: edit/save files created by Windows Explorer

2020-07-24 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41373> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41674] Doc tests failing for many PRs on GitHub

2020-08-31 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi, This issue was reported by Mark Shannon on Python-dev mailing list Seems that there's an issue on doc build on Github pipeline https://github.com/python/cpython/pull/22026/checks?check_run_id=1050881634 https://github.com/python/cpython/pull/

[issue41749] Little improve on imghdr library

2020-09-08 Thread Emmanuel Arias
New submission from Emmanuel Arias : For the `what()` function, the `file` parameter is always needed. In despite of that users can use `h` for send a bytes stream to detect the kind of the image, the `file` parameter is need. Don't have sense ask for `file` parameter when this parameter

[issue41749] Little improve on imghdr library

2020-09-08 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +21240 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22166 ___ Python tracker <https://bugs.python.org/issu

[issue41778] Change a punctuation on documentation

2020-09-13 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +21284 stage: -> patch review pull_request: https://github.com/python/cpython/pull/9 ___ Python tracker <https://bugs.python.org/issu

[issue41778] Change a punctuation on documentation

2020-09-13 Thread Emmanuel Arias
New submission from Emmanuel Arias : On this paragrapah the clarification about IIS7 seems there's not connection beacuase is in other sentence. Move the punctuation to connect both the last sentence with the information in the parenthesis. I think the NEWS is not necessary

[issue41778] Change a punctuation on documentation

2020-09-13 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +21287 pull_request: https://github.com/python/cpython/pull/22232 ___ Python tracker <https://bugs.python.org/issue41

[issue41749] Allow omission of imghdr.what file arg if bytes are given

2020-09-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: > The opening message confused me by using 'need' as 'currently required to > call' rather than 'required to compute (test) and necessarily needed to > call'; but after reading the code, I believe I understand and mo

[issue29940] Add follow_wrapped=True option to help()

2020-09-23 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +21431 pull_request: https://github.com/python/cpython/pull/22390 ___ Python tracker <https://bugs.python.org/issue29

[issue41858] Fix incomplete line on optparse documentation

2020-09-24 Thread Emmanuel Arias
New submission from Emmanuel Arias : This line seems to be incomplete. This fix come from the translation to spanish of @fjsevilla-dev on https://github.com/python/python-docs-es/pull/758/file. reading the proposal for the translate has sense add `the next lines`. -- assignee: docs

[issue41858] Fix incomplete line on optparse documentation

2020-09-24 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +21447 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22407 ___ Python tracker <https://bugs.python.org/issu

[issue29940] Add follow_wrapped=True option to help()

2020-09-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi @taleinat, Seems tha the wrapped func already has the __doc__ (in this case) copied. following your example: >>> double >>> double.__doc__ 'A function' so help(double) will pr

[issue40257] Improve the use of __doc__ in pydoc

2020-09-25 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu nosy_count: 11.0 -> 12.0 pull_requests: +21452 pull_request: https://github.com/python/cpython/pull/22390 ___ Python tracker <https://bugs.python.org/issu

[issue41858] Fix incomplete line on optparse documentation

2020-09-26 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Terry and Tal Einat, I can't say too much because I am not English native, and my English is very basic. When I read the docs and the translation from python-docs-es, that sentence make me feel how if something is missing, but I understand the inte

[issue41858] Fix incomplete line on optparse documentation

2020-09-27 Thread Emmanuel Arias
Emmanuel Arias added the comment: Thanks for the help and review! -- ___ Python tracker <https://bugs.python.org/issue41858> ___ ___ Python-bugs-list mailin

[issue40455] GCC 10 compiler warnings

2020-10-03 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, I've on my Debian (testing) the reported warning: In function ‘assemble_lnotab’, inlined from ‘assemble_emit’ at Python/compile.c:5706:25, inlined from ‘assemble’ at Python/compile.c:6048:18: Python/compile.c:5660:19: warning: writing 1 byte i

[issue41940] AMD64 Debian root 3.x: tests fail because downloaded files start with:

2020-10-09 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41940> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41940] AMD64 Debian root 3.x: tests fail because downloaded files start with:

2020-10-09 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, seems that this test doesn't occur ? or I'm very wrong? https://buildbot.python.org/all/#/builders/345 -- ___ Python tracker <https://bugs.python.o

[issue41996] Should `make install` still install to /usr/bin/python3?

2020-10-10 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, There're many people that still use py2, or both. Also python2 (python) is incompatible with python3, so we cannot call python == python3. (There was some discussion on Debian, just if you want take a look https://lists.debian.org/debian-python/20

[issue40064] py38: document xml.etree.cElementTree will be removed in 3.9

2020-10-10 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, This ticket should be closed or updated. see disussion https://bugs.python.org/issue36543 -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue40

[issue37461] email.parser.Parser hang

2020-10-12 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue37461> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41822] Document the meaning of values for sys.float_info.rounds

2020-10-12 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue41822> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue33167] RFC Documentation Updates to urllib.parse.rst

2020-11-21 Thread Emmanuel Arias
Emmanuel Arias added the comment: +1 for the closed -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue33167> ___ ___ Python-bugs-list mailin

  1   2   3   >