Changes by emmanuel :
--
nosy: +emmanuel
___
Python tracker
<http://bugs.python.org/issue14916>
___
___
Python-bugs-list mailing list
Unsubscribe:
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/
Changes by emmanuel :
Added file: http://bugs.python.org/file29432/bug.sh
___
Python tracker
<http://bugs.python.org/issue14916>
___
___
Python-bugs-list mailin
Changes by emmanuel :
Removed file: http://bugs.python.org/file29431/bug.sh
___
Python tracker
<http://bugs.python.org/issue14916>
___
___
Python-bugs-list mailin
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
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
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
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
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
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
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38225>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38172>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38255>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38293>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38332>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
Emmanuel Arias added the comment:
I can't reproduce the error
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38554>
___
___
Python-bugs-l
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38430>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38599>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
Change by Emmanuel Arias :
--
pull_requests: +24922
pull_request: https://github.com/python/cpython/pull/26330
___
Python tracker
<https://bugs.python.org/issue28
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue34908>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue14322>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue44405>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue44324>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue44779>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Emmanuel Arias :
--
versions: +Python 3.11 -Python 3.5
___
Python tracker
<https://bugs.python.org/issue20779>
___
___
Python-bugs-list mailin
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue37334>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue38960>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue39953>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue39159>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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.
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:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue43063>
___
___
Python-bugs-list mailing list
Unsubscribe:
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:
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
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
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
Change by Emmanuel Arias :
--
components: +Windows
nosy: +paul.moore, steve.dower, tim.golden, zach.ware
___
Python tracker
<https://bugs.python.org/issue43
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue43352>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue40696>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41098>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
Emmanuel Arias added the comment:
oops, I didn't see. Thanks
--
___
Python tracker
<https://bugs.python.org/issue41098>
___
___
Python-bugs-list m
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41100>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41137>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41217>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41045>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41373>
___
___
Python-bugs-list mailing list
Unsubscribe:
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/
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
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
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
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
Change by Emmanuel Arias :
--
pull_requests: +21287
pull_request: https://github.com/python/cpython/pull/22232
___
Python tracker
<https://bugs.python.org/issue41
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
Change by Emmanuel Arias :
--
pull_requests: +21431
pull_request: https://github.com/python/cpython/pull/22390
___
Python tracker
<https://bugs.python.org/issue29
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
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
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
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
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
Emmanuel Arias added the comment:
Thanks for the help and review!
--
___
Python tracker
<https://bugs.python.org/issue41858>
___
___
Python-bugs-list mailin
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41940>
___
___
Python-bugs-list mailing list
Unsubscribe:
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
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
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
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue37461>
___
___
Python-bugs-list mailing list
Unsubscribe:
Change by Emmanuel Arias :
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue41822>
___
___
Python-bugs-list mailing list
Unsubscribe:
Emmanuel Arias added the comment:
+1 for the closed
--
nosy: +eamanu
___
Python tracker
<https://bugs.python.org/issue33167>
___
___
Python-bugs-list mailin
1 - 100 of 251 matches
Mail list logo