[issue24230] tempfile.mkdtemp() doesn't work with bytes paths

2015-05-18 Thread Gregory P. Smith
Gregory P. Smith added the comment: it seems a little messy to code this up the way Lib/tempfile.py is written but i'll take a stab at it tonight. Probably via parallel implementations of the methods internally rather than conditional logic throughout given how they work. --

[issue10354] tempfile.template is broken

2015-05-18 Thread R. David Murray
R. David Murray added the comment: Backward compatibility in that someone might be using the constant in their code. You could just leave the existing value there with a comment that it is unused and use a leading _ for the new constants. (Or you could delete it...it's not likely anyone is u

[issue24205] signature.bind error messages are sub-optimal

2015-05-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3cc368d334c5 by Yury Selivanov in branch 'default': Issue 24205: Improve inspect.Signature.bind() error messages. https://hg.python.org/cpython/rev/3cc368d334c5 -- nosy: +python-dev ___ Python tracker

[issue24205] signature.bind error messages are sub-optimal

2015-05-18 Thread Yury Selivanov
Changes by Yury Selivanov : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs

[issue24117] Wrong range checking in GB18030 decoder.

2015-05-18 Thread Ma Lin
Ma Lin added the comment: This is not a de-facto standard, it should be fixed. I already posted this infomation on a Taiwan Python community, let's wait their inspection. -- ___ Python tracker

[issue22970] asyncio: Cancelling wait() after notification leaves Condition in an inconsistent state

2015-05-18 Thread Yury Selivanov
Changes by Yury Selivanov : -- priority: normal -> deferred blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20691] inspect.signature: Consider exposing 'follow_wrapper_chains' option in public API

2015-05-18 Thread Yury Selivanov
Yury Selivanov added the comment: Nick, what do you think of this one? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue24236] TestNG results to Junit results conversion

2015-05-18 Thread Tushar
Changes by Tushar : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue24236] TestNG results to Junit results conversion

2015-05-18 Thread Tushar
New submission from Tushar: This tool/module will perform the TestNG type results to Junit results. This will be applicable for any TestNG result.xml file. -- components: Extension Modules messages: 243557 nosy: tusharm priority: normal severity: normal status: open title: TestNG resul

[issue20691] inspect.signature: Consider exposing 'follow_wrapper_chains' option in public API

2015-05-18 Thread Nick Coghlan
Nick Coghlan added the comment: I like the idea of the following signature: def signature(callable, *, follow_wrapped=True): ... I'm less convinced about exposing the flag to optionally show the first positional arg for bound methods, as that's currently specific to method objects

[issue24117] Wrong range checking in GB18030 decoder.

2015-05-18 Thread Ma Lin
Ma Lin added the comment: >> If you could provide links to the relevant pages/section we can verify that >> the codecs are indeed incorrect. Here is CP950, 0xC6A1 is not in it. https://msdn.microsoft.com/zh-cn/goglobal/cc305155 I can provide one link, but there are many variants of BIG5 conve

[issue18391] socket.fromfd()'s API is difficult or impossible to use correctly in general

2015-05-18 Thread James Tocknell
Changes by James Tocknell : -- nosy: +aragilar ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue16864] sqlite3.Cursor.lastrowid isn't populated when executing a SQL REPLACE statement

2015-05-18 Thread Alex Lord
Alex Lord added the comment: Oh, alright. That makes a lot of sense. Sorry for being dense. I should have read the docs on subtest. All lines are under 80 characters and I modified the unit test to use subtest. Thanks for taking the time to walk me through this. -- Added file: http://

<    1   2