[issue36953] Remove collections ABCs?

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

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: hello, I will work on it, if there are no objection. :-) -- ___ Python tracker <https://bugs.python.org/issue36373> ___ ___

[issue36373] asyncio.gather: no docs for deprecated loop parameter

2019-05-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi > There is no need to jumbo PR, you can split the work into PR-per-module if it > is more comfortable to you. Yes, I think that is better split I will try it. > I'm ok with reviewing any approach. Thanks! -- title: Deprecate

[issue36373] Deprecate explicit loop parameter in all public asyncio APIs

2019-05-29 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +13559 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13670 ___ Python tracker <https://bugs.python.org/issu

[issue36373] Deprecate explicit loop parameter in all public asyncio APIs

2019-05-29 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +13560 pull_request: https://github.com/python/cpython/pull/13671 ___ Python tracker <https://bugs.python.org/issue36

[issue37105] Add deprecated-remove information on stream doc

2019-05-30 Thread Emmanuel Arias
New submission from Emmanuel Arias : According to the code on streams.py the functions: open_connection(), start_server(), open_unix_connection(), start_unix_server() are deprecated. I inform that on documentation. -- assignee: docs@python components: Documentation messages: 344015

[issue37105] Add deprecated-remove information on stream doc

2019-05-30 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +13578 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13672 ___ Python tracker <https://bugs.python.org/issu

[issue36373] Deprecate explicit loop parameter in all public asyncio APIs

2019-06-08 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +13793 pull_request: https://github.com/python/cpython/pull/13920 ___ Python tracker <https://bugs.python.org/issue36

[issue36373] Deprecate explicit loop parameter in all public asyncio APIs

2019-06-10 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +13818 pull_request: https://github.com/python/cpython/pull/13950 ___ Python tracker <https://bugs.python.org/issue36

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

2019-08-07 Thread Emmanuel Coirier
New submission from Emmanuel Coirier : When compiling sqlite with a specific prefix, Python compilation process is unable to find sqlite despite CFLAGS and LDFLAGS environment variable correctly set. The problem is in the setup.py, in the detect_modules function or the detect_sqlite

[issue37801] Compilation on MINGW64 fails (CODESET,wcstok,...)

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

[issue37799] Renaming Doc/reference/ to Doc/language/

2019-08-09 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello maggyero, I thinks that could be a good improve. But this structure is used on since old cpython versions, so I don't know if it will be a necessary change. But, if you don't receive some feedback from here, you can propose a PR, maybe othe

[issue19217] Calling assertEquals for moderately long list takes too long

2018-12-17 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10441 ___ Python tracker <https://bugs.python.org/issue19217> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35530] Counter-intuitive logging API

2018-12-19 Thread Emmanuel Arias
Emmanuel Arias added the comment: > The call to logging.error() is irrelevant, since there's no expectation that > the module-level function will necessarily output the same as a method of a > specific instance logger.error(). That's true. Maybe and warning or Exception c

[issue35530] Counter-intuitive logging API

2018-12-19 Thread Emmanuel Arias
Emmanuel Arias added the comment: > What would the exception say? > >FatalError: no error occurred haha, I mean a message that tell you something to avoid have some weird behave (like here). :-) > If you have 3.8 installed, feel free to test the code yourself and report &g

[issue33661] urllib may leak sensitive HTTP headers to a third-party web site

2018-12-23 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi!, Like say Katsuhiko YOSHIDA (https://github.com/python/cpython/pull/11292#issuecomment-449667371) this should be filter other sensitive header. I think that is reasonable if we think on a complete solution to this issue. Maybe this issue could be

[issue24053] Define EXIT_SUCCESS and EXIT_FAILURE constants in sys

2018-12-25 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Elliot! > It seems like a no-brainer to add these, they reduce magic number use and > improve the accessibility of Python to people coming from C. I would love to > add these if everyone is OK with it. Sound great. But IMO I think that th

[issue35590] logging.handlers.SysLogHandler with STREAM connects in constructor without timeout

2018-12-26 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, If I don't see bad, if a timeout occur this is catch by the OSError exception. -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/is

[issue35590] logging.handlers.SysLogHandler with STREAM connects in constructor without timeout

2018-12-26 Thread Emmanuel Arias
Change by Emmanuel Arias : -- components: +Library (Lib) type: -> enhancement ___ Python tracker <https://bugs.python.org/issue35590> ___ ___ Python-bugs-lis

[issue35593] Register standard browser: Chrome

2018-12-27 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi! This issue is open to discuss the PR: https://github.com/python/cpython/pull/11327 This PR propose add "chrome" on webbrowser.register_standard_browsers for windows IMO this is a reasonable new feature simply because Chrome is com

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi! I prepare a little improve. I added some samples usage, some clarification and delete some whitespace unnecessary. Attach patch. Regards -- assignee: docs@python components: Documentation files: 0001-improve-abc.py-docstring.patch keywords

[issue35608] python3 multiprocessing queue deadlock when use thread and process at same time

2018-12-28 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi >def write_to_stdout(result_queue: Queue): I think that you have to write here a sleep. IMO this is blocking all. -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issu

[issue35608] python3 multiprocessing queue deadlock when use thread and process at same time

2018-12-28 Thread Emmanuel Arias
Emmanuel Arias added the comment: > data = result_queue.get() And this is blocked -- ___ Python tracker <https://bugs.python.org/issue35608> ___ ___ Python-

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10653 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35609> ___ ___ Python-bugs-lis

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10653, 10654 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35609> ___ ___ Python-

[issue35609] Improve of abc.py docstring

2018-12-28 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10653, 10654, 10655 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35609> ___ ___ Py

[issue35609] Improve of abc.py docstring

2018-12-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Double spaces between sentences increase readability. This is not a bug. hmm ok. I can see other docstring with not double spaces. But I will ignore. > Since abstractclassmethod and like are deprecated and should not be used in > new code, I do

[issue35616] Change references to '4.0'.

2018-12-29 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch pull_requests: +10688, 10689 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35616] Change references to '4.0'.

2018-12-29 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +10688 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35616] Change references to '4.0'.

2018-12-29 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch, patch pull_requests: +10688, 10689, 10690 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35616] Change references to '4.0'.

2018-12-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: Same similar occur with other docs $ git grep 'deprecated-removed::.*4\.0' Doc/c-api/arg.rst: .. deprecated-removed:: 3.3 4.0 Doc/c-api/arg.rst: .. deprecated-removed:: 3.3 4.0 Doc/c-api/arg.rst: .. deprecated-removed:: 3.3 4.0 Doc/c-a

[issue35617] unittest discover does not work with implicit namespaces

2018-12-30 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! IMO its a good propose. You will have to modify some tests. -- nosy: +eamanu versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! Seems like a bug. Please provide a patch. This can be apply to 3.8? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue35

[issue35615] "RuntimeError: Dictionary changed size during iteration" when copying a WeakValueDictionary

2018-12-30 Thread Emmanuel Arias
Change by Emmanuel Arias : -- versions: +Python 3.8 ___ Python tracker <https://bugs.python.org/issue35615> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35545] asyncio.base_events.create_connection doesn't handle scoped IPv6 addresses

2019-01-02 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi!, I was reading the PR. Just a little comment. I am not sure about have a difference for IPv4 and IPv6, in the sense of use a tuple for IPv4 and separate parameters for IPv6 Regards -- nosy: +eamanu

[issue35640] Allow passing PathLike arguments to SimpleHTTPRequestHandler

2019-01-02 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi, A PR was opened https://github.com/python/cpython/pull/11398. This PR seems interest in the sense that this allow passing a pathlike arguments to SimpleHTTPRequestHandler. Regards -- components: Library (Lib) messages: 332873 nosy: eamanu

[issue35609] Improve of abc.py docstring

2019-01-02 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Serhiy, A little question. Is there a planned version to remove the deprecated? -- ___ Python tracker <https://bugs.python.org/issue35

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Tal Einat! I would like to take this issue to be my first contribution :-) Thanks! -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue35

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch, patch, patch pull_requests: +10813, 10814, 10815, 10816 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +10813 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch pull_requests: +10813, 10814 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35641] IDLE: calltips not properly formatted for functions without doc-strings

2019-01-02 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch, patch pull_requests: +10813, 10814, 10815 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35609] Improve of abc.py docstring

2019-01-04 Thread Emmanuel Arias
Emmanuel Arias added the comment: > No plan for removal. See https://bugs.python.org/issue28886#msg282582 Thanks! -- ___ Python tracker <https://bugs.python.org/issu

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-04 Thread Emmanuel Arias
Emmanuel Arias added the comment: ping Vaibhav :-) > I would like to make a PR for this. -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issu

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-05 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi xtreak, > Thanks @nekobon for the patch. I am triaging old mock related issues. I think > dict insertion order is maintained from 3.6 and guaranteed with 3.7 and > above. But it would be good to add the unit test in the patch as a PR. I ran &

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-05 Thread Emmanuel Arias
Emmanuel Arias added the comment: Sorry I was wrong. On ```python foo = OrderedDict() foo['a'] = object() foo['b'] = 'something' ``` I was write "first" and "second" like key and fail in ```python @patch.dict(foo, OrderedDict(update_

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-05 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10871 ___ Python tracker <https://bugs.python.org/issue24928> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-05 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10871, 10872 ___ Python tracker <https://bugs.python.org/issue24928> ___ ___ Python-bugs-list mailing list Unsub

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-05 Thread Emmanuel Arias
Change by Emmanuel Arias : -- pull_requests: +10871, 10872, 10873 ___ Python tracker <https://bugs.python.org/issue24928> ___ ___ Python-bugs-list mailin

[issue35616] Change references to '4.0'.

2019-01-05 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello! IMHO I don't think is good say that they will remove on a version that is not planned yet. I agree with Marc-Andre is better say " they will be remove in the next major release" -- ___

[issue35685] Add samples on patch.dict of the use of decorator and in class

2019-01-08 Thread Emmanuel Arias
New submission from Emmanuel Arias : Hi! I create this PR to add a samples of the use of patch.dict with decorator on method and class. I think that is a good improve because the doc mentions the use of patch.dict with decorator on method and class but don't show any samples.

[issue35685] Add samples on patch.dict of the use of decorator and in class

2019-01-08 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +10959 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue35685> ___ ___ Py

[issue35685] Add samples on patch.dict of the use of decorator and in class

2019-01-08 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch, patch pull_requests: +10959, 10960, 10961 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35685] Add samples on patch.dict of the use of decorator and in class

2019-01-08 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch, patch pull_requests: +10959, 10960 stage: -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-10 Thread Emmanuel Arias
Emmanuel Arias added the comment: Ping :-) Thanks Karthikeyan for the PR review. Would someone else like review it, please? Thanks! Regards -- ___ Python tracker <https://bugs.python.org/issue24

[issue35727] sys.exit() in a multiprocessing.Process does not align with Python behavior

2019-01-13 Thread Emmanuel Arias
Emmanuel Arias added the comment: The same behavior on 3.8 and 3.5 -- nosy: +eamanu versions: +Python 3.5, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue24928] mock.patch.dict spoils order of items in collections.OrderedDict

2019-01-20 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi Berker, Thanks for you response. I agree when you say that patch.dict is a simply operation, but I think that this test can be necessary, if for some reason the implementation of patch.dict (or its parts) decide change. > I think the relations

[issue35788] smtpd.PureProxy and smtpd.MailmanProxy broken by extra kwargs, bytes and more

2019-01-20 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Should I create a new issue(s) for these problems or is there some agreement > that only actual bugs will be fixed in little-used modules like this? I would create new issue for each point to discuss, but I would like listen other op

[issue35535] time.strptime() unexpectedly gives the same result for %U and %W for 2018

2019-01-28 Thread Emmanuel Arias
Emmanuel Arias added the comment: I try to reproduce and confirm the xtreak example, and how xtreak and p-ganssle explain, I think that the behavoir is correct according the documentation. I would like to know why there is difference between 2.3.4 (Paul Keating example) and cpython master

[issue35808] Let's retire pgen

2019-01-28 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello! I can help if you consider it appropriate :-) -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue35

[issue35841] Datetime strftime() does not return correct week numbers for 2019

2019-01-29 Thread Emmanuel Arias
Emmanuel Arias added the comment: > I believe this ticket can be closed. Yes, I think so. How you say, on 35535 there is a detailed explanation about the behavior. -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issu

[issue30670] pprint for dict in sorted order or insert order?

2019-02-06 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! >def pprint(data, *, sort_dicts=True): >... >def pp(data, *args, **kwds): >pprint(data, *args, sort_dicts=False, **kwds) We could use the parameters `sort=`? IMHO is better a short parameters name. If we assig

[issue30670] pprint for dict in sorted order or insert order?

2019-02-06 Thread Emmanuel Arias
Emmanuel Arias added the comment: > pprint only sorts dicts currently so sort_dicts is better than sort that > sounds more general. Yes. Because pprint just sort dicts, I think that is better rename the parameter like just sort. But was an opinion, that does not affect to the be

[issue35913] asyncore: allow handling of half closed connections

2019-02-06 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! > Assigning this to me but am not sure 1) when I'll be able to look at this 2) > whether it's worth it as asyncore is deprecated in favor of asyncio. Yes, asyncore is deprecated since 3.6.

[issue35969] Interpreter crashes with "can't initialize init_sys_streams" when abc fails to import

2019-02-12 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi, The reason of the aborted(core dump) of the interpreter is because when the init process was wrong, the ```_Py_NO_RETURN fatal_error()``` call and abort() So, I change it for a exit(status) to avoid break the interpreter (I attach a patch) What do

[issue35969] Interpreter crashes with "can't initialize init_sys_streams" when abc fails to import

2019-02-12 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Otherwise I'd say it would be nice to refactor in such a way that avoids the > core dump when the problem is on the Python side I agree with @p-ganssle, If exist some problem on initialize Python interpreter it would be great if it return

[issue35980] Py3 BIF random.choices() is O(N**2) but I've written O(N) code for the same task

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

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

2019-02-14 Thread Emmanuel Arias
Emmanuel Arias added the comment: hmmm do you have some code to reproduce it? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue35995> ___ ___

[issue33043] Add a 'Contributing to Docs' link at the bottom of docs.python.org

2019-02-14 Thread Emmanuel Arias
Change by Emmanuel Arias : -- nosy: +eamanu type: -> enhancement ___ Python tracker <https://bugs.python.org/issue33043> ___ ___ Python-bugs-list mai

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

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

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: I take it -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue36006> ___ ___ Python-bugs-list mailing list Unsub

[issue36004] Add datetime.fromisocalendar

2019-02-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: +1 -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue36004> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35931] pdb: "debug print(" crashes with SyntaxError

2019-02-15 Thread Emmanuel Arias
Emmanuel Arias added the comment: ping reviewer :-) I test this PR and work fine on Ubuntu 18.04 -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue35

[issue36006] [good first issue] Align version changed for truncate in io module

2019-02-15 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +11914 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

[issue35867] NameError is not caught at Task execution

2019-02-18 Thread Emmanuel Arias
Emmanuel Arias added the comment: I test it and this have the same behavior on 3.7 and 3.8... I will work on this -- nosy: +eamanu versions: +Python 3.7, Python 3.8 ___ Python tracker <https://bugs.python.org/issue35

[issue34793] Remove support for "with (await asyncio.lock):"

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

[issue36045] builtins.help function is not much help with async functions

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

[issue35885] configparser: indentation

2019-02-19 Thread Emmanuel Arias
Emmanuel Arias added the comment: > I already have some example code for it Do you have a patch? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issu

[issue35840] Control flow inconsistency on closed asyncio stream

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

[issue35812] Don't log an exception from the main coroutine in asyncio.run()

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

[issue35840] Control flow inconsistency on closed asyncio stream

2019-02-20 Thread Emmanuel Arias
Emmanuel Arias added the comment: I think that this issue is just for Windows right? I add Windows to required a Windows' dev. -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker &

[issue36057] Add docs and tests for ordering in Counter. [no behavior change]

2019-02-20 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hi! I will take it :-) -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue36057> ___ ___ Python-bugs-list m

[issue36057] Add docs and tests for ordering in Counter. [no behavior change]

2019-02-20 Thread Emmanuel Arias
Change by Emmanuel Arias : -- components: +Documentation ___ Python tracker <https://bugs.python.org/issue36057> ___ ___ Python-bugs-list mailing list Unsub

[issue36057] Add docs and tests for ordering in Counter. [no behavior change]

2019-02-20 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Sorry, I've already assigned this to myself. Ah!! sorry sorry! -- ___ Python tracker <https://bugs.python.org

[issue36035] pathlib.Path().rglob() breaks with broken symlinks

2019-02-20 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +11990 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36035> ___ ___ Py

[issue36035] pathlib.Path().rglob() breaks with broken symlinks

2019-02-21 Thread Emmanuel Arias
Emmanuel Arias added the comment: Hello! I make the PR: https://github.com/python/cpython/pull/11964 But I need help to test it :-( Any could help me please? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue36

[issue20582] socket.getnameinfo() does not document flags

2019-02-21 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +12001 stage: needs patch -> patch review ___ Python tracker <https://bugs.python.org/issu

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

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: Yes, that is a problem (in principle) of the docs. But I think that would be appropriate return None if is closed. -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue36

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

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: hmm looking in depth when the server is closed, currently return None. -- ___ Python tracker <https://bugs.python.org/issue36

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

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: Maybe would be great mention that the None is still return for closed server -- ___ Python tracker <https://bugs.python.org/issue36

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

2019-02-22 Thread Emmanuel Arias
Change by Emmanuel Arias : -- keywords: +patch pull_requests: +12010 stage: -> patch review ___ Python tracker <https://bugs.python.org/issue36074> ___ ___ Py

[issue31162] urllib.request.urlopen CERTIFICATE_VERIFY_FAILED error

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: hmmm I think that is not a bug. I think that this is a certification problem, literally. -- nosy: +eamanu status: pending -> open ___ Python tracker <https://bugs.python.org/issu

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

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: @mhchia yes! sorry! I was testing the .close() return. yes you are right is confused. I will modified the PR. Thanks -- ___ Python tracker <https://bugs.python.org/issue36

[issue35826] Typo in example for async with statement with condition

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: This issue could be closed, right? -- nosy: +eamanu ___ Python tracker <https://bugs.python.org/issue35826> ___ ___ Python-bug

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

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: > Sure thing. Should it be discussed more detailed before the PR? If the > document or the returned value is controversial, I would like to contribute > if needed. Thanks :) Please, make the comments on the PR. This way, other reviewer can

[issue35392] Create asyncio/sockutils.py

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

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

2019-02-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: > @mdk That's interesting. May I ask which one is the preferred behavior, > `None` or `[]`? IMO changing the returned of the sockets could represent a big change, and I think that this need to

[issue13349] Non-informative error message in index() and remove() functions

2017-03-22 Thread Emmanuel Arias
Emmanuel Arias added the comment: I agree with Jim Fasarakis-Hilliard this message may be change in new 3.7 version -- nosy: +eamanu ___ Python tracker <http://bugs.python.org/issue13

[issue30090] Failed to build these modules: _ctypes

2017-04-17 Thread Emmanuel Arias
New submission from Emmanuel Arias: Hello everybody, I am working with the code. I clone the repo, and make a pull upstream of github's cpython repository (master branch), and when I make: ./configure --with-pydebug && make -j build correctly but finished with this message

[issue30090] Failed to build these modules: _ctypes

2017-04-17 Thread Emmanuel Arias
Emmanuel Arias added the comment: The problem was solution making: apt-get install libffi-dev Thanks -- ___ Python tracker <http://bugs.python.org/issue30

<    1   2   3   >