[issue12197] non-blocking SSL write fails if a partial write was issued

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue12197> ___ ___ Python-bugs-list mailing list Unsub

[issue19007] precise time.time() under Windows 8

2014-07-30 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, tim.golden, zach.ware versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue19

[issue18402] Finding perl64

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can ths be closed as "not a bug"? -- nosy: +BreamoreBoy -brian.curtin ___ Python tracker <http://bugs.python.o

[issue9122] Problems with multiprocessing, Python embedding and Windows

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue9122> ___ ___

[issue18295] Possible integer overflow in PyCode_New()

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Note this is referenced from #18407. -- nosy: +BreamoreBoy versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue18

[issue18407] Fix compiler warnings in pythoncore for Win64

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have the stage set to patch review please. -- nosy: +BreamoreBoy -brian.curtin versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue18

[issue18477] fix_import (2to3 fixer) is not case-sensitive

2014-07-30 Thread Mark Lawrence
Mark Lawrence added the comment: Can we set the stage to patch review please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue18

[issue11955] 3.3 : test_argparse.py fails 'make test'

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: @Ezio will you be following this up, specifically msg193970 ? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue11

[issue18142] Tests fail on Mageia Linux Cauldron x86-64 with some configure flags

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Is there anything we can do here, do we close it as "out of date" or what? -- nosy: +BreamoreBoy type: -> behavior versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.pytho

[issue17085] test_socket crashes the whole test suite

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still an issue with Python 2.7.8? (I don't have 2.7 or linux to test on) -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/is

[issue17923] test glob with trailing slash fail

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Couldn't part of the patch be simplified to:- if basename or os.path.isdir(dirname): yield pathname or have I misread it? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/is

[issue18004] test_list.test_overflow crashes Win64

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: What if anything needs to be done here? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue18004> ___ ___ Pytho

[issue18188] ERROR: test_no_optimize_flag on Mageia Linux Cauldron x86-64 with certain configure flags

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still a problem with later versions of Python on this platform? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue18

[issue18651] test failures on KFreeBSD

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: A different patch is still needed for 3.4. -- nosy: +BreamoreBoy type: -> behavior versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issu

[issue7897] Support parametrized tests in unittest

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Is there any possibility of getting this into 3.5? If it helps I've always got time on my hands so if nothing else I could do testing on Windows 8.1. -- nosy: +BreamoreBoy, zach.ware versions: +Python 3.5 -Pytho

[issue7944] Use the 'with' statement in conjunction with 'open' throughout test modules

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: Following on from msg185817 I'd suggest this is closed. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/i

[issue20056] Got deprecation warning when running test_shutil.py on Windows NT 6

2014-07-31 Thread Mark Lawrence
Mark Lawrence added the comment: The deprecation warnings are coming from the various os calls so are nothing to do with test_shutil. I think this can be closed as "not a bug". -- nosy: +BreamoreBoy ___ Python tracker <http://bu

[issue11698] Improve repr for structseq objects to show named, but unindexed fields

2014-08-01 Thread Mark Lawrence
Mark Lawrence added the comment: Could somebody pick this up please as it fixes #5907. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue11

[issue19613] test_nntplib: sporadic failures, test_article_head_body()

2014-08-01 Thread Mark Lawrence
Mark Lawrence added the comment: The last five builds have been successful so can this be closed as "out of date"? -- nosy: +BreamoreBoy type: -> behavior versions: +Python 3.5 ___ Python tracker <http://bugs.pytho

[issue9529] Make re match object iterable

2014-08-01 Thread Mark Lawrence
Mark Lawrence added the comment: Why worry about the "new" regex module? It doesn't appear to be any closer to getting into the stdlib than it was when #2636 was first opened on 15th April 2008, so maybe Python 4.0? -- nos

[issue1327594] Static Windows Build fails to locate existing installation

2014-08-01 Thread Mark Lawrence
Mark Lawrence added the comment: Opinions from our Windows experts please. -- nosy: +BreamoreBoy, steve.dower, tim.golden, zach.ware versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue1327

[issue1654408] Installer should split tcl/tk and tkinter install options.

2014-08-01 Thread Mark Lawrence
Mark Lawrence added the comment: Quoting from msg55008 "I know this isn't a common occurrence and not a problem with python directly" I believe this should be closed as "won't fix", what do the rest of you think? -- components: +Windows nosy: +Breamor

[issue22123] Make object() behave exactly like types.SimpleNamespace() if given kwargs

2014-08-02 Thread Mark Lawrence
Mark Lawrence added the comment: As a work around for the originator how about >>> pyobject = object # keep reference to built-in. >>> from types import SimpleNamespace as object >>> help(object) Help on class SimpleNamespace in module types: ... ??? --

[issue1602] windows console doesn't print or input Unicode

2014-08-02 Thread Mark Lawrence
Mark Lawrence added the comment: To ensure that we're all talking about the same thing, is everybody using the /u unicode output option or /a ansi (which I'm assuming is the default) when running cmd? -- nosy: +BreamoreBoy ___ Python trac

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2014-08-02 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue20323> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10071] Should not release GIL while running RegEnumValue

2014-08-02 Thread Mark Lawrence
Mark Lawrence added the comment: Apart from the request for a comment made in msg192649 it looks as if this can be commited. -- nosy: +BreamoreBoy, steve.dower, tim.golden, zach.ware -brian.curtin versions: +Python 3.5 -Python 3.3 ___ Python

[issue19955] When adding .PY and .PYW to PATHEXT, it replaced string instead of appending

2014-08-02 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, tim.golden, zach.ware versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue19

[issue18611] Mac: Some Python Launcher issues

2014-08-02 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue18611> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue18645] Add a configure option for performance guided optimization

2014-08-02 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: behavior -> enhancement versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue18645> ___ ___ Py

[issue18423] Document limitations on -m

2014-08-02 Thread Mark Lawrence
Mark Lawrence added the comment: @Andrew could you put up a patch for this? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue18

[issue18691] sqlite3.Cursor.execute expects sequence as second argument.

2014-08-02 Thread Mark Lawrence
Mark Lawrence added the comment: @Andrew your words describe the Cursor execute method but your examples show the Connection execute method, can you clarify please. -- nosy: +BreamoreBoy, ghaering ___ Python tracker <http://bugs.python.

[issue18697] Unify arguments names in Unicode object C API documentation

2014-08-02 Thread Mark Lawrence
Mark Lawrence added the comment: @Serhiy will you be proposing a patch for this? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue18

[issue15428] add "Name Collision" section to argparse docs

2014-08-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> enhancement versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue15428> ___ _

[issue18766] IDLE: Autocomplete in editor doesn't work for un-imported modules

2014-08-03 Thread Mark Lawrence
Mark Lawrence added the comment: The patch is simple but I don't know enough about IDLE to comment technically, what do you think Terry? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.py

[issue13822] is(upper/lower/title) are not exactly correct

2014-08-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue13822> ___ ___ Python-bugs-list mailing list Unsub

[issue18769] argparse remove subparser

2014-08-03 Thread Mark Lawrence
Mark Lawrence added the comment: @Paul it's a simple enough patch, what do you think? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/is

[issue17603] AC_LIBOBJ replacement of fileblocks

2014-08-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue17603> ___ ___ Python-bugs-list mailing list Unsub

[issue17769] python-config --ldflags gives broken output when statically linking Python with --as-needed

2014-08-03 Thread Mark Lawrence
Mark Lawrence added the comment: @Max sorry about the delay in giving you a response. Can somebody please pick this up, I can't find on the experts list who to put on the nosy list for build issues. -- nosy: +BreamoreBoy ___ Python tracker

[issue17774] unable to disable -r in run_tests.py

2014-08-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue17774> ___ ___ Python-bugs-list mailing list Unsub

[issue15992] Strict aliasing violations in Objects/unicodeobject.c

2014-08-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue15992> ___ ___ Python-bugs-list mailin

[issue16429] Emit SyntaxWarning for code that risks UnboundLocalError

2014-08-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> enhancement versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue16429> ___ ___ Python-

[issue15018] Incomplete Python LDFLAGS and CPPFLAGS used for extension modules on posix

2014-08-03 Thread Mark Lawrence
Mark Lawrence added the comment: Who is best placed to comment on build issues? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue15

[issue18841] math.isfinite fails with Decimal sNAN

2014-08-03 Thread Mark Lawrence
Mark Lawrence added the comment: Steven, can you propose a patch for this? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue18841> ___ ___

[issue22028] Python 3.4.1 Installer ended prematurely (Windows msi)

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: Nobody is listed as a maintainer for mimetypes here https://docs.python.org/devguide/experts.html but I've seen Tim has done some work on it so adding him to nosy list. -- nosy: +BreamoreBoy, tim.golden ___ P

[issue18620] multiprocessing page leaves out important part of Pool example

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: Looks as if the v2 and v3 docs need changing. -- nosy: +BreamoreBoy type: enhancement -> behavior versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker <http://bugs.python.org/issu

[issue18976] distutils/command/build_ext passes wrong linker flags

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: @Eric what do you make of the attached patch? -- nosy: +BreamoreBoy versions: -Python 2.6, Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue18

[issue18977] The -t option has no effect in for uu command-line

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: Could it be argued that this is a regression so the type should be behavior and not enhancement? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue18

[issue18979] Use argparse in the uu module

2014-08-07 Thread Mark Lawrence
Mark Lawrence added the comment: @Paul what is your opinion of this patch? -- nosy: +BreamoreBoy, paul.j3 versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue18

[issue22170] Typo in iterator doc

2014-08-08 Thread Mark Lawrence
Mark Lawrence added the comment: The comma is needed to prevent blank newlines being printed. Please try it for yourself. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue22

[issue14944] Setup & Usage documentation for pydoc, idle & 2to3

2014-08-09 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that this still applies to 3.4 and 2.7. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/is

[issue6858] This is a python file, apply syntax highlighting

2014-08-09 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue6858> ___ ___

[issue16893] Create IDLE help.txt from Doc/library/idle.rst

2014-08-09 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue16893> ___ ___ Python-bugs-list mailing list Unsub

[issue22179] Focus stays on Search Dialog when text found in editor

2014-08-10 Thread Mark Lawrence
New submission from Mark Lawrence: As the title. Even using the Find Next button doesn't get the focus on the found text so you can't see it, the Search Dialog has to be closed. Windows 8.1 Python 3.4.1. -- components: IDLE messages: 225138 nosy: BreamoreBoy, terry.reed

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2014-08-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, zach.ware -brian.curtin versions: +Python 3.5 -Python 3.4 ___ Python tracker <http://bugs.python.org/issue18

[issue20101] Determine correct behavior for time functions on Windows

2014-08-10 Thread Mark Lawrence
Mark Lawrence added the comment: Is there anything else that can be done or needs doing here? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20

[issue2200] find_executable fails to find .bat files on win32

2014-08-10 Thread Mark Lawrence
Changes by Mark Lawrence : -- components: -Distutils2 nosy: +dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3.1, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue2

[issue20042] Python Launcher, Windows, fails on scripts w/ non-latin names

2014-08-10 Thread Mark Lawrence
Mark Lawrence added the comment: Is this actually fixable? I only ask as we seem to have a whole lot of fun with anything involving cmd.exe as epitomized on #1602. -- nosy: +BreamoreBoy, steve.dower, vinay.sajip, zach.ware -brian.curtin versions: +Python 2.7, Python 3.4, Python 3.5

[issue19743] test_gdb failures

2014-08-10 Thread Mark Lawrence
Mark Lawrence added the comment: Seems as if this can be closed. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue19743> ___ ___ Python-bug

[issue20035] Clean up Tcl library discovery in Tkinter on Windows

2014-08-10 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have (hopefully) a final review and get this committed as that would also allow us to close #10652. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue20

[issue4431] Distutils MSVC doesn't create manifest file

2014-08-11 Thread Mark Lawrence
Mark Lawrence added the comment: There are a lot of messages on this issue considering it was closed as invalid on 25th November 2008 :) -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4

[issue22195] Make it easy to replace print() calls with logging calls

2014-08-14 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue22195> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10583] Encoding issue with chm help in 2.7.1

2014-08-17 Thread Mark Lawrence
Mark Lawrence added the comment: Is there anything to be done here as Sphinx is a third party tool and the root cause is already fixed? -- ___ Python tracker <http://bugs.python.org/issue10

[issue7951] Should str.format allow negative indexes when used for __getitem__ access?

2014-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: msg216038 suggests three options for the doc patch, does anybody have any preference or a better alternative? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue7

[issue7511] msvc9compiler.py: ValueError when trying to compile with VC Express

2014-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that the 2.7 patch is still valid but have no idea whether or not any work is needed on 3.4 or 3.5. -- nosy: +BreamoreBoy, zach.ware versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tr

[issue22228] Adapt bash readline operate-and-get-next function

2014-08-19 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy, Rosuav ___ Python tracker <http://bugs.python.org/issue8> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12006] strptime should implement %V or %u directive from libc

2014-08-19 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue12006> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue22240] argparse support for "python -m module" in help

2014-08-21 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy, paul.j3 ___ Python tracker <http://bugs.python.org/issue22240> ___ ___ Python-bugs-list mailing list Unsub

[issue22261] Concurrent Build when using MsBuild

2014-08-23 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +BreamoreBoy, steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue22261> ___ ___ Python-bug

[issue17896] Move Windows external libs from \..\ to \externals

2014-08-24 Thread Mark Lawrence
Mark Lawrence added the comment: I see that this has also been raised on #22262. As nobody has objected can't we just get on with it? -- ___ Python tracker <http://bugs.python.org/is

[issue4277] asynchat's handle_error inconsistency

2014-08-29 Thread Mark Lawrence
Mark Lawrence added the comment: #6550 and #11267 have been closed as out of date as asynchat and asyncore are effectively deprecated in favour of asyncio so can't this go the same way? -- nosy: +BreamoreBoy ___ Python tracker

[issue6029] FAIL: test_longdouble (ctypes.test.test_callbacks.Callbacks) [SPARC/64-bit]

2014-08-30 Thread Mark Lawrence
Mark Lawrence added the comment: Terry r59626 in the file's revision history refers to eefd521f19ce which I assume is what you're after. FWIW I get that on Windows 8.1 by right clicking on the file, select TortoiseHg, then Revisi

[issue19826] Document that bug reporting by email is possible

2014-09-02 Thread Mark Lawrence
Mark Lawrence added the comment: I agree with David, I've noticed several messages recently that are mostly untrimmed replies to email so essentially have no actual content. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.py

[issue900092] hotshot.stats.load fails with AssertionError

2014-09-05 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 2.7 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue900092> ___ ___ Python-bugs-list mailing list Unsub

[issue8840] truncate() semantics changed in 3.1.2

2014-09-05 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed or what? -- versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue8

[issue15934] flaky test in test_ftplib

2014-09-05 Thread Mark Lawrence
Mark Lawrence added the comment: Surely a test issue can be closed after two years? -- ___ Python tracker <http://bugs.python.org/issue15934> ___ ___ Python-bug

[issue9951] introduce bytes.hex method

2014-09-10 Thread Mark Lawrence
Mark Lawrence added the comment: I'd say add memoryview.hex() here as everything seems related. Victor has also mentioned memoryview in msg226692. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/i

[issue22391] MSILIB truncates last character in summary information stream

2014-09-11 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: +steve.dower, tim.golden, zach.ware ___ Python tracker <http://bugs.python.org/issue22391> ___ ___ Python-bugs-list mailin

[issue22364] Unify error messages of re and regex

2014-09-18 Thread Mark Lawrence
Mark Lawrence added the comment: How can anything that's in the stdlib be unified with something that's not in the stdlib and currently has no prospects of getting in the stdlib? -- nosy: +BreamoreBoy ___ Python tracker <http://bu

[issue16007] Improved Error message for failing re expressions

2014-09-18 Thread Mark Lawrence
Mark Lawrence added the comment: The original try/except that leads to the raise does not exist in the latest 3.5 code. I'd be inclined to close this as "out of date" for compatibility reasons if nothing else. -- nosy: +BreamoreBoy ___

[issue22364] Unify error messages of re and regex

2014-09-19 Thread Mark Lawrence
Mark Lawrence added the comment: The key word is "potential". I do not believe that any changes should be made to the re module until such time as there is a fully approved PEP for the regex module and that work has actually started on getting it into the stdlib. Surel

[issue9179] Lookback with group references incorrect (two issues?)

2014-09-27 Thread Mark Lawrence
Mark Lawrence added the comment: Given the comment from Matthew Barnett in msg109399 "...I had a look at the re module, found it too difficult..." can this be closed as "won't fix"? -- nosy: +BreamoreBoy, serhiy.storchaka

[issue4093] add gc/memory management tests to pybench

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: Antoine or Marc-Andre will either of you follow up on this as the last message msg74608 was nearly six years ago? -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue4

[issue9313] distutils error on MSVC older than 8

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: Distutils2 is dead. -- components: -Distutils2 nosy: +BreamoreBoy, dstufft ___ Python tracker <http://bugs.python.org/issue9

[issue2148] nis module not supporting group aliases

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: I think this should be an enhancement request. -- components: +Library (Lib) -None nosy: +BreamoreBoy, jcea type: behavior -> enhancement versions: +Python 3.5 -Python 2.7, Python 3.1, Python 3.2 ___ Python trac

[issue10007] Visual C++ cannot build _ssl and _hashlib if newer OpenSSL is placed in $(dist) directory (PCBuild)

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: Has this been superseded by the many improvements made to the Windows build system over the last few months or even years? -- nosy: +BreamoreBoy, steve.dower, zach.ware type: -> behavior ___ Python tracker &l

[issue1382562] --install-base not honored on win32

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: I'd try to reproduce this but with so little data to go on I don't understand how. Can somebody fill the gaps? -- components: +Windows -Distutils2 nosy: +BreamoreBoy, dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3.1,

[issue9643] urllib2 - Basic, Digest Proxy Auth Handlers failure will give 401 code instead of 407

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: Slipped under the radar? -- components: +Library (Lib) nosy: +BreamoreBoy type: -> behavior versions: +Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker <http://bugs.python.org/iss

[issue1160328] urllib2 post error when using httpproxy

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: >From msg60698 "The first URL hangs for me, using Firefox. Especially if this depends on using a proxy which I do not have permission to use, I have no idea how to reproduce this." I certainly have no idea on how to reproduce this so unless so

[issue1565509] Repair or Change installation error

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: I don't recall ever seeing a problem like this, but then I haven't used IE in years and don't intend using it now just for this. -- components: +Windows nosy: +BreamoreBoy, steve.dower, zach.ware versions: +Python 3.4, Python 3.5 -Python

[issue678264] test_resource fails when file size is limited

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody take a look at this please. See also #9917. -- ___ Python tracker <http://bugs.python.org/issue678264> ___ ___ Pytho

[issue8988] import + coding = failure (3.1.2/win32)

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: Works for me using 3.4.1 and 3.5.0a0. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/issue8988> ___ ___ Pytho

[issue8747] Autoconf tests in python not portably correct

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: >From msg112274 "if these platforms can't function with these preprocessor >defines, the platforms need to be fixed -- not python." so I believe this can >be closed. -- nosy: +BreamoreBoy _

[issue10036] compiler warnings for various modules on Linux buildslaves

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: >From msg119142 "I suspect we don't really fix libffi compile warnings because >..." so it looks as if we wouldn't bother anyway, plus these compiler warnings >are years old so can this be closed as "out of dat

[issue9943] TypeError message became less helpful in Python 2.7

2014-09-28 Thread Mark Lawrence
Mark Lawrence added the comment: 3.4.1 and 3.5.0a0 give the same message as 2.6. I don't have 2.7 to see what it currently does. -- nosy: +BreamoreBoy ___ Python tracker <http://bugs.python.org/i

[issue6978] compiler.transformer dict key bug d[1,] = 1

2014-09-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody set this to "patch review" and do the honours please. FWIW I don't like "tulplesub" in the patch. -- nosy: +BreamoreBoy ___ Python tracker <http

[issue9912] Fail when vsvarsall.bat produces stderr

2014-09-29 Thread Mark Lawrence
Mark Lawrence added the comment: Ping. -- ___ Python tracker <http://bugs.python.org/issue9912> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue809846] bdist_wininst doesn't clean up read-only files in build dir

2014-09-29 Thread Mark Lawrence
Mark Lawrence added the comment: I understand from the experts list that tarek is no longer maintaining distutils but I can't change the "assigned to" field. As a matter of interest there are another 67 issues with tarek assigned. -- nosy: +BreamoreBoy, dstufft versio

[issue8350] Document lack of support for keyword arguments in C functions

2014-09-29 Thread Mark Lawrence
Mark Lawrence added the comment: Has the Argument Clinic had an impact on this or is that a different kettle of fish? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue8

[issue10789] Lock.acquire documentation is misleading

2014-09-29 Thread Mark Lawrence
Mark Lawrence added the comment: Has the Argument Clinic had an impact on this or is that a different kettle of fish? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1 ___ Python tracker <http://bugs.python.org/issue10

[issue10938] Provide links to system specific strftime/ptime docs

2014-09-29 Thread Mark Lawrence
Mark Lawrence added the comment: @Humberto could you provide a patch for this? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker <http://bugs.python.org/issue10

<    14   15   16   17   18   19   20   21   22   23   >