[issue19143] Finding the Windows version getting messier (detect windows 8.1?)

2014-12-31 Thread eryksun
eryksun added the comment: > actual_len = kernel32.GetModuleFileNameW(kernel32._handle, name, len(name)) A module handle is the module's base address. kernel32 is loaded at a 32-bit base address in a 64-bit process, but I don't know whether that will always be true in current and future versio

[issue18648] FP Howto and the PEP 8 lambda guildline

2014-12-31 Thread Berker Peksag
Changes by Berker Peksag : -- stage: needs patch -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue1500504] Alternate RFC 3986 compliant URI parsing module

2014-12-31 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mai

[issue2292] Missing *-unpacking generalizations

2014-12-31 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailin

[issue20898] Missing 507 response description

2014-12-31 Thread Demian Brecht
Demian Brecht added the comment: @Berker: Good point, although I think that the status code table in http.client.rst should be merged with the one in http.rst as to avoid redundancy (newly added status codes should also have links added). The table in http.client.rst should likely be replaced

[issue17994] Change necessary in platform.py to support IronPython

2014-12-31 Thread Mark Lawrence
Mark Lawrence added the comment: Cpython was changed via #8964 to handle this situation. -- nosy: +BreamoreBoy, steve.dower, tim.golden, zach.ware ___ Python tracker ___

[issue22680] Blacklist FunctionTestCase from test discovery

2014-12-31 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue22680] Blacklist FunctionTestCase from test discovery

2014-12-31 Thread Martin Panter
Martin Panter added the comment: Assuming that FunctionTestCase inherits from TestCase, a fix for Issue 14534 would be useful here. That bug is about avoiding TestCase subclasses being automatically run, which is useful for abstract base test classes. -- __

[issue23142] Integration of unittest.FunctionTestCase with automatic discovery and loading

2014-12-31 Thread Martin Panter
New submission from Martin Panter: It is not clear how you are meant to use unittest.FunctionTestCase with automatic test running. Unless a simple way to do this already exists, I wonder if it would be okay to automatically discover and run predefined test instances, such as the "test_module.t

<    1   2