[issue27707] List reports incorrect length if modifed after yield

2016-08-08 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- status: closed -> open ___ Python tracker <http://bugs.python.org/issue27707> ___ ___ Python-bugs-list mailing list Unsubscrib

[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2016-08-08 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is an updated version (for 3.6) of the patch of maciej.szulik. I have executed all the tests. Please, could you review this patch. Thank you -- nosy: +matrixise versions: +Python 3.6 -Python 3.5 Added file: http://bugs.python.org/file44044

[issue6057] sqlite3 error classes should be documented

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is the patch with my comments. -- Added file: http://bugs.python.org/file44043/issue6057-3.6.diff ___ Python tracker <http://bugs.python.org/issue6

[issue6057] sqlite3 error classes should be documented

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- stage: needs patch -> patch review ___ Python tracker <http://bugs.python.org/issue6057> ___ ___ Python-bugs-list mai

[issue6057] sqlite3 error classes should be documented

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Jaysinh, I have reviewed your patch, but for me, this one should be have an order for the exception. * Warning * Error * DatabaseError * ProgrammingError * IntegrityError Thank you -- nosy: +matrixise

[issue24459] Mention PYTHONFAULTHANDLER in the man page

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue24459> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23746] sysconfg.is_python_build() is buggy

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue23746> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12276] 3.x ignores sys.tracebacklimit=0

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue12276> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27704] bytes(x) is slow when x is bytearray

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: the patch seems to be fine. -- nosy: +haypo, matrixise ___ Python tracker <http://bugs.python.org/issue27704> ___ ___ Python-bug

[issue26470] Make OpenSSL module compatible with OpenSSL 1.1.0

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Christian, I have reviewed your patch, seems to be fine for me. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue26

[issue27702] [Patch] Only use SOCK_RAW when defined

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue27702> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18049] Re-enable threading test on OSX

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: yes, maybe, could you provide a patch ? -- ___ Python tracker <http://bugs.python.org/issue18049> ___ ___ Python-bugs-list m

[issue10496] Python startup should not require passwd entry

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- versions: +Python 3.6 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue10496> ___ ___ Python-bugs-list mailin

[issue27701] [posixmodule] [Refactoring patch] Simply call into *at() functions unconditionally when present

2016-08-07 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue27701> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12946] PyModule_GetDict() claims it can never fail, but it can

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: you can merge the patch. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue12946> ___ ___ Python-bugs-list m

[issue23105] os.O_SHLOCK and os.O_EXLOCK are not available on Linux

2016-08-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Which sentence with "Windows only" ? Thanks -- ___ Python tracker <http://bugs.python.org/issue23105> ___ ___

[issue23105] os.O_SHLOCK and os.O_EXLOCK are not available on Linux

2016-08-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: patch for 3.6 with the comment of Sworddragon. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file44032/issue23105.diff ___ Python tracker <http://bugs.pyth

[issue23105] os.O_SHLOCK and os.O_EXLOCK are not available on Linux

2016-08-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I am working on it. -- ___ Python tracker <http://bugs.python.org/issue23105> ___ ___ Python-bugs-list mailing list Unsub

[issue23105] os.O_SHLOCK and os.O_EXLOCK are not available on Linux

2016-08-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: If you read the documentation from glibc-2.24, these options are only available on BSD and not on Linux. """ The remaining operating modes are BSD extensions. They exist only on some systems. On other systems, these macros are not defin

[issue23105] os.O_SHLOCK and os.O_EXLOCK are not available on Linux

2016-08-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Link to the documentation of glibc: http://www.gnu.org/software/libc/manual/html_node/Open_002dtime-Flags.html -- ___ Python tracker <http://bugs.python.org/issue23

[issue27373] logging.handlers.SysLogHandler with TCP not working on rsyslog5.8

2016-08-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: For me, it's an issue with the management of the protocol in rsyslog and not with the logging library. You can close the issue. -- nosy: +matrixise status: pending -> open ___ Python tracke

[issue27688] Expand documentation about Any in the typing module

2016-08-05 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I have reviewed your patch, and it compiles with sphinx. no issue with the content, but I am not a native speaker and not an expert of the type hinting of python 3.5 -- nosy: +matrixise ___ Python tracker <h

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

2016-08-05 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Sorry, I was busy with a task but here is my patch for 3.5, in fact, it's just the same for 3.6 -- Added file: http://bugs.python.org/file44023/issue24658-3.5.diff ___ Python tracker <http://bugs.py

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

2016-08-05 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : Added file: http://bugs.python.org/file44024/issue24658-3.5.diff ___ Python tracker <http://bugs.python.org/issue24658> ___ ___ Python-bug

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

2016-08-05 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : Removed file: http://bugs.python.org/file44023/issue24658-3.5.diff ___ Python tracker <http://bugs.python.org/issue24658> ___ ___ Python-bug

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

2016-08-05 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is my patch 3.6, I am going to provide the patch for 3.5 -- nosy: +matrixise Added file: http://bugs.python.org/file44021/issue24658-3.6.diff ___ Python tracker <http://bugs.python.org/issue24

[issue27678] itertools.permutations/.combinations should have len

2016-08-04 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: __length_hint__ returns an estimated length for the object. As you said, if the object passed-in has a length, we could use it. If not, then raise TypeError. But we will have two different behaviors in function of the parameter. -- nosy: +matrixise

[issue25571] Improve the lltrace feature with the Py_Debug mode

2016-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is a new version of my patch "issue25571-4.diff" with the comments of Emanuel Barry. -- Added file: http://bugs.python.org/file43997/issue25571-4.diff ___ Python tracker <http://bugs.python.o

[issue25571] Improve the lltrace feature with the Py_Debug mode

2016-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is a small patch for the __ltrace__ feature. I would like to propose a new test, __ltrace__ should be defined in the globals() dictionary and there is no check on the value associated to this key. Maybe we could defined it as a boolean, True or False

[issue27670] Use https instead of http in the PYTHON_VERSION constant

2016-08-03 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue27670> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27670] Use https instead of http in the PYTHON_VERSION constant

2016-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Larry and Ned, I have added you to this issue because you are the release managers of 3.5 and 3.6. This issue is not important but just for the form, we need to use https instead of http for the bugtracker. Have a nice day, Stephane -- nosy

[issue27670] Use https instead of http in the PYTHON_VERSION constant

2016-08-02 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- keywords: +patch Added file: http://bugs.python.org/file43985/issue27670.diff ___ Python tracker <http://bugs.python.org/issue27

[issue27670] Use https instead of http in the PYTHON_VERSION constant

2016-08-02 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: The current url for bugs.python.org uses http and not https. I propose a patch with https, -- components: Interpreter Core messages: 271867 nosy: matrixise priority: normal severity: normal status: open title: Use https instead of http in the

[issue23710] C API doc for PyObject_HEAD is outdated

2016-08-02 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue23710> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue24637] locals dictionary in PyRun_String

2016-08-02 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: the patch makes sense for me. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue24637> ___ ___ Python-bug

[issue27579] Add a tutorial for AsyncIO in the documentation

2016-07-20 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: The documentation of AsyncIO is well written for a developer, but it's a reference. We have the description of all the methods, classes, etc... But we want to learn to develop with AsyncIO, it's difficult, because there is no many exampl

[issue25571] Improve the lltrace feature with the Py_Debug mode

2016-07-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Totally agree with you, I am going to check that, because currently, there is no test with this "hidden" feature in Python. I am going to discuss with Victor about this point. Thanks, Stephane On 07/20, Xavier Combelle wrote: > >Xavier Co

[issue25571] Improve the lltrace feature with the Py_Debug mode

2016-07-19 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- components: +Interpreter Core versions: +Python 3.6 ___ Python tracker <http://bugs.python.org/issue25571> ___ ___ Python-bug

[issue10496] Python startup should not require passwd entry

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi @victor I have compiled the bug.c file with my fedora 24. there is python 2.7.11 and 3.5.1 and I don't have the bug with these versions. What can we do with this issue ? Thanks, Stephane -- nosy: +matr

[issue25910] Fixing links in documentation

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: maybe we can continue on this issue and close it asap. what do you think ? -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25

[issue20767] Some python extensions can't be compiled with clang 3.4

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I have checked the status of the FreeBSD issue, and it's "New". What do you think for the fix ? -- nosy: +matrixise ___ Python tracker <http://bugs.pyt

[issue18049] Re-enable threading test on OSX

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: for my part, I think you should use a #ifdef PY_DEBUG in your code and increase the default size of the stack for the threads, and only if you are on APPLE and PY_DEBUG mode. -- nosy: +matrixise ___ Python tracker

[issue14375] Add socketserver running property

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: what's the status of this issue ? -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue14375> ___ ___ Pytho

[issue26380] Add an http method enum

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: what's the status of your issue ? -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue26380> ___ ___ Pytho

[issue3119] pickle.py is limited by python's call stack

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: hello, I think we can close this issue because Python 3.1 is not supported. or we keep it if this issue is confirmed for Python 3.6. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue3

[issue11822] Improve disassembly to show embedded code objects

2016-07-18 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: hello, we can continue the discussion on this issue ? -- ___ Python tracker <http://bugs.python.org/issue11822> ___ ___ Pytho

[issue25571] Improve the lltrace feature with the Py_Debug mode

2016-07-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: here is the patch, if you want to test it, just use the REPL and add __ltrace__ = None in the REPL. -- Added file: http://bugs.python.org/file43747/issue25571-2.diff ___ Python tracker <http://bugs.python.

[issue25571] Improve the lltrace feature with the Py_Debug mode

2016-07-16 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is a small example of lltrace when you enable it. ``` stephane@sg1 ~/s/h/cpython> ./python Python 3.6.0a3+ (default:0d8f139a6e19+, Jul 16 2016, 11:59:46) [GCC 6.1.1 20160621 (Red Hat 6.1.1-3)] on linux Type "help", "copyright"

[issue27519] update the references to http://mercurial.selenic.com

2016-07-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: because we don't want to change a tool but just an URL. you can create an other issue if you prefer to use TortoiseHg. -- ___ Python tracker <http://bugs.python.org/is

[issue27519] update the references to http://mercurial.selenic.com

2016-07-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: which GUI version ? it's in the documentation. please could you be more explicit ? thanks -- ___ Python tracker <http://bugs.python.org/is

[issue27519] update the references to http://mercurial.selenic.com

2016-07-15 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I just updated to the new url of the Mercurial Wiki for the devguide. -- components: +Devguide -Documentation keywords: +patch nosy: +ezio.melotti, willingc versions: +Python 3.5 Added file: http://bugs.python.org/file43731/issue27519.diff

[issue27519] update the references to http://mercurial.selenic.com

2016-07-15 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: In the devguide, there are some references to http://mercurial.selenic.com/wiki/ but the website has been migrated to http://mercurial-scm.org/wiki/ -- assignee: docs@python components: Documentation messages: 270476 nosy: docs@python, matrixise

[issue27518] small typo error in Grammar/Grammar

2016-07-15 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: Here is a small patch for the Grammar/Grammar file, there is a typo in the comments. -- assignee: docs@python components: Documentation files: Grammar.diff keywords: patch messages: 270475 nosy: docs@python, matrixise priority: normal severity

[issue25572] _ssl doesn't build on OSX 10.11

2016-07-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: The new paragraph about Homebrew for OSX is useful, we can close this issue. -- status: open -> closed ___ Python tracker <http://bugs.python.org/issu

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thank you for your patch, it's easier for the review. -- ___ Python tracker <http://bugs.python.org/issue26076> ___ ___

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +serhiy.storchaka ___ Python tracker <http://bugs.python.org/issue26076> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8810] TZ offset description is unclear in docs

2016-01-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Martin, Which patch? Thanks -- Stéphane Wirtel - http://wirtel.be - @matrixise -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue8

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Totally agree with you, 1. Create a patch 2. Remove the commented lines in the patch -- ___ Python tracker <http://bugs.python.org/issue26

[issue26076] redundant checks in tok_get in Parser\tokenizer.c

2016-01-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi SilentGhost and Oren, There is a problem with this patch. This is not a patch, but the complete file. 1. Could you provide a real patch, with the real diff. Use hg diff > /tmp/issue26076.diff 2. Please, could you provide a small test to be sure t

[issue19316] devguide: compiler - wording

2016-01-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: maybe :/ I have reinstalled my laptop, will try to find the patch asap -- ___ Python tracker <http://bugs.python.org/issue19

[issue26074] Add a method to pip.. pip.require("package_name")

2016-01-10 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: But in fact, Pip is an external project to CPython. Could you explain why you post this issue in the CPython Bug Tracker? Thank you -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue26

[issue26063] Update copyright in the devguide

2016-01-09 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: +1 -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue26063> ___ ___ Python-bugs-list mailing list Unsub

[issue25770] expose name, args, and kwargs from methodcaller

2015-12-01 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi, I just tried your patch with the last revision and I have an error with the tests. stephane@sg1 ~/s/h/cpython> ./python -m test test_operator [1/1] test_operator Fatal Python error: ./Modules/_operator.c:975 object at 0x7ff804c2e3d8 has negative

[issue25528] Attempt to further increase test coverage of calendar module

2015-11-26 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Sure, But the patch is correct. Now, you are right, we have to ask him a new patch where the function is really tested. -- ___ Python tracker <http://bugs.python.org/issue25

[issue25528] Attempt to further increase test coverage of calendar module

2015-11-26 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: no problem about the second patch of Rohit. pass the test with default and I have tested the code in the REPL. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25

[issue21475] Support the Sitemap extension in robotparser

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Add a test with your patch. Thank you -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue21475> ___ ___ Pytho

[issue25710] zipimport is not PEP 3147 or PEP 488 compliant

2015-11-23 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25710> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue4744] asynchat documentation needs to be more precise

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: For my part, you can close this issue. I have read the asynchat.rst and asynchat.py files and think the rest of the documentation is clear. -- ___ Python tracker <http://bugs.python.org/issue4

[issue4744] asynchat documentation needs to be more precise

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Martin, About the patch of Nikita, this one has already been applied. I have checked the source. David, maybe we should close this issue. And open a new one if we find an other issue in the documentation. What do you suggest? Should I continue on this issue

[issue25712] Dead link in the PEP-3147

2015-11-23 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: In the PEP-3147, there is a link to the marshal library. The link is dead because we get a 404 HTTP error. https://www.python.org/dev/peps/pep-3147/ The link is [2] : https://www.python.org/doc/current/library/marshal.html but the link gives a 404

[issue4744] asynchat documentation needs to be more precise

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Ok, in this case, I will provide the patch On 11/23, R. David Murray wrote: > > R. David Murray added the comment: > > Yes. The docs should be accurate, even if the module is deprecated. > > -- > >

[issue25704] Update the devguide to 3.5

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Berker, Thank you for your review, > I don't think most of the version numbers are very important here and I > wouldn't change them unless there is a valid reason. My first opinion when I have read the documentation was "but this doc

[issue25706] problems in library/base64.rst

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thanks for your explanation, Serhiy. Now, I know how to fix this kind of issues. On 11/23, Serhiy Storchaka wrote: > > Serhiy Storchaka added the comment: > > Thank you for your report hiroaki itoh. Fixed yet one error in > Doc/libra

[issue4744] asynchat documentation needs to be more precise

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Martin, About the patch of Nikita, I am going to rewrite it asap. Will you have time to check it ? Thanks -- Stéphane Wirtel - http://wirtel.be - @matrixise -- ___ Python tracker <http://bugs.python.

[issue25706] problems in library/base64.rst

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Who can explain the problem ? I am ignorant about this issue. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25

[issue19316] devguide: compiler - wording

2015-11-23 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi everybody, Here is a new version of the script for the last version of the devguide. 198554fa82c2 Please review and apply. -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue19

[issue25704] Update the documentation to 3.5

2015-11-23 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: In this patch, I have updated the version of Python, from 3.4 to 3.5. And added Ned Deily in the Release Manager for 3.6. -- keywords: +patch Added file: http://bugs.python.org/file41135/issue25704.patch

[issue25704] Update the documentation to 3.5

2015-11-23 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- components: Devguide nosy: ezio.melotti, matrixise, willingc priority: normal severity: normal status: open title: Update the documentation to 3.5 versions: Python 3.6 ___ Python tracker <http://bugs.python.

[issue22218] Fix more compiler warnings "comparison between signed and unsigned integers"

2015-11-22 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: a patch for 3.6 for the unicodeobject.c file -- versions: +Python 3.6 -Python 3.5 Added file: http://bugs.python.org/file41121/issue22218-2.patch ___ Python tracker <http://bugs.python.org/issue22

[issue4744] asynchat documentation needs to be more precise

2015-11-22 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Ping, what's the status of this issue ? maybe we can close it and open an new one with a new description. -- ___ Python tracker <http://bugs.python.org/i

[issue25485] Add a context manager to telnetlib.Telnet

2015-11-21 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I applied the recommendation of SilentGhost for this issue. Need review Thank you -- Added file: http://bugs.python.org/file41119/issue25485-4.patch ___ Python tracker <http://bugs.python.org/issue25

[issue25643] Python tokenizer rewriting

2015-11-21 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi Serhiy, Just of your information but I think you know that, the tests pass ;-) [398/399] test_multiprocessing_spawn (138 sec) -- running: test_tools (108 sec) [399/399] test_tools (121 sec) 385 tests OK. 3 tests altered the execution environment

[issue25643] Python tokenizer rewriting

2015-11-21 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25643> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25686] Don't use distutils in test_shutil

2015-11-21 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Welcome Serhiy, -- ___ Python tracker <http://bugs.python.org/issue25686> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25485] Add a context manager to telnetlib.Telnet

2015-11-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Need review for this new patch. * Add test * Improve the documentation * Update the Misc/NEWS -- Added file: http://bugs.python.org/file41106/issue25485-3.patch ___ Python tracker <http://bugs.python.

[issue25686] Don't use distutils in test_shutil

2015-11-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Works fine on my laptop with 3.6. and the code is right -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25

[issue25671] Fix venv activate.fish to maintain $status

2015-11-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: I am a user of fish. The use case is just execute python -mvenv demo source demo/bin/activate.fish check the status and deactivate the virtualenv ? do you confirm ? Thank you -- nosy: +matrixise ___ Python

[issue25625] "chdir" Contex manager for pathlib

2015-11-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: > In the context of subprocesses there is better way to run a program in > specified working directory that temporary change current working directory > in parent process. Ok, haven't read the last line of the description. thanks for the

[issue25625] "chdir" Contex manager for pathlib

2015-11-20 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: What's the relation with subprocess.Popen ? -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25625> ___ ___

[issue25485] Add a context manager to telnetlib.Telnet

2015-11-17 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Should I develop a mock telnet server for the unittest ? -- ___ Python tracker <http://bugs.python.org/issue25485> ___ ___ Pytho

[issue25579] def is not a keyword with tokenize.py

2015-11-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: ?? -- ___ Python tracker <http://bugs.python.org/issue25579> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25579] def is not a keyword with tokenize.py

2015-11-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: how to know if it's an issue or not? we can ask to Yury -- nosy: +yselivanov ___ Python tracker <http://bugs.python.org/is

[issue25569] Memory leak in SSLSocket.getpeercert()

2015-11-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: sorry for the delay. here is a new version of my patch, if I can have feedback about this patch, I will really appreciate. thank you -- Added file: http://bugs.python.org/file40976/issue25569-2.patch ___ Python

[issue25580] async and await missing from token list

2015-11-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: With python 3.5, async is a token with the ASYNC type. >>> tokens = tokenize.generate_tokens(io.StringIO('async def foo').readline) >>> pprint.pprint(list(tokens)) [TokenInfo(type=55 (ASYNC), string='async', start=(1

[issue25579] def is not a keyword with tokenize.py

2015-11-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: why do you close it ? def is not a keyword and it's a problem, how do you define a function is def is not a keyword. async is not a keyword but if you used it before 'def', async will become a keyword. have you checked the output from the

[issue25579] def is not a keyword with tokenize.py

2015-11-07 Thread Stéphane Wirtel
New submission from Stéphane Wirtel: For tokenize.py, 'def' is not a keyword but just a simple identifier. >>> tokens = tokenize.generate_tokens(io.StringIO('async def foo(): >>> pass').readline) >>> pprint.pprint(list(tokens)) [TokenInfo(type=5

[issue25569] Memory leak in SSLSocket.getpeercert()

2015-11-07 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi alex, Thank you for your feeback, I will propose an other patch with your remarks. Stephane -- ___ Python tracker <http://bugs.python.org/issue25

[issue25573] FrameSummary repr() does not support previously working uses of repr in traceback module

2015-11-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Oops, sorry, -- ___ Python tracker <http://bugs.python.org/issue25573> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue25573] FrameSummary repr() does not support previously working uses of repr in traceback module

2015-11-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Could you check with Python 3.4 ? -- nosy: +matrixise ___ Python tracker <http://bugs.python.org/issue25573> ___ ___ Python-bug

[issue11907] SysLogHandler can't send long messages

2015-11-06 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: This issue will stay closed, BUT I propose you to create a new issue with a new title: Feature: Support message over 1024 bytes for the SysLogHandler. and propose a patch for this feature. -- nosy: +matrixise

<    5   6   7   8   9   10   11   12   >