[issue2571] can cmd.py's API/docs for the use of an alternate stdin be improved?

2014-06-27 Thread Jack Andrews
Jack Andrews added the comment: I'm no longer working on this, but IIRC, my patch is not necessary and there is no deficiency. Ta, Jack On Saturday, June 28, 2014, Mark Lawrence wrote: > > Mark Lawrence added the comment: > > Does somebody want to propose a patch to take this forward, or can

[issue12420] distutils tests fail if PATH is not defined

2014-06-27 Thread Nick Coghlan
Nick Coghlan added the comment: Skipping if the compiler isn't available is problematic, since that could reflect a real failure mode for the code. -- ___ Python tracker ___ ___

[issue12420] distutils tests fail if PATH is not defined

2014-06-27 Thread Nick Coghlan
Nick Coghlan added the comment: For Python 3, I suggest tweaking the code to use shutil.which and see if that improves matters. For Python 2, I'm inclined not to worry about it. -- ___ Python tracker

[issue21878] wsgi.simple_server's wsgi.input readline waits forever for non-multipart/form-data

2014-06-27 Thread Robin Schoonover
New submission from Robin Schoonover: In the reference WSGI server in wsgiref.simple_server, wsgi.input's readline() hangs if the request body does not actually contain any newlines. Consider the following (slightly silly) example: from wsgiref.simple_server import make_server def app

[issue12420] distutils tests fail if PATH is not defined

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: test_disutils still fails on both 2.7 and 3.4 installs. Since PATH is defined, that is not the issue here. I am tempted to unconditionally skip the test and close this issue. -- ___ Python tracker

[issue12814] Possible intermittent bug in test_array

2014-06-27 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue21863] Display module names of C functions in cProfile

2014-06-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you, committed! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue21863] Display module names of C functions in cProfile

2014-06-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6dd4c2d30b0e by Antoine Pitrou in branch 'default': Issue #21863: cProfile now displays the module name of C extension functions, in addition to their own name. http://hg.python.org/cpython/rev/6dd4c2d30b0e -- nosy: +python-dev ___

[issue11754] Check calculated constants in test_string.py

2014-06-27 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- title: Changed test to check calculated constants in test_string.py -> Check calculated constants in test_string.py ___ Python tracker ___ ___

[issue10000] mark more tests as CPython specific

2014-06-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: Closing this unless some specifics arise. -- nosy: +rhettinger resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue13277] tzinfo subclasses information

2014-06-27 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I would say this is a doc issue. There are some tzinfo algorithms that depend on utcoffset(dt)-dst(dt) being invariant, but this is the part of datetime library that I have never fully understood. What I do understand is that conversion from local time

[issue12589] test_long.test_nan_inf() failed on OpenBSD (powerpc)

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be reproduced on 3.4/5? -- nosy: +BreamoreBoy type: -> behavior versions: +Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker ___ __

[issue13277] tzinfo subclasses information

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: I don't understand the implications of timezone stuff at all so can a guru on the subject please comment on this. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker

[issue11754] Changed test to check calculated constants in test_string.py

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: Three years later, I do understand 'circular'. Such cut-and-paste whitebox tests tend to simultaneously test too much -- the particular implementation(1) -- and too little -- the actual specification(2). (1) The test would falsely fail if a string were reorder

[issue10932] distutils.core.setup - data_files misbehaviour ?

2014-06-27 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 tracker ___

[issue12808] Coverage of codecs.py

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Would someone who's commented previously do a commit review please? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue21844] Fix HTMLParser in unicodeless build

2014-06-27 Thread Ezio Melotti
Ezio Melotti added the comment: I think that Unicode support should be required for HTMLParser. If you don't want tests to fail in Unicode-less build it would be probably easier to just skip them altogether. -- ___ Python tracker

[issue2571] can cmd.py's API/docs for the use of an alternate stdin be improved?

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Does somebody want to propose a patch to take this forward, or can it be closed again, or what? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker __

[issue12814] Possible intermittent bug in test_array

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-lis

[issue1528154] New sequences for Unicode groups and block ranges needed

2014-06-27 Thread Ezio Melotti
Ezio Melotti added the comment: This seems to be the only one currently. Other issues might have closed in favor of #2636 though. -- ___ Python tracker ___

[issue6550] asyncore incorrect failure when connection is refused and using async_chat channel

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: @Victor as you've been looking at other asyncore/chat issues can you look at this please? -- nosy: +haypo ___ Python tracker ___

[issue21046] Document formulas used in statistics

2014-06-27 Thread Ezio Melotti
Changes by Ezio Melotti : -- resolution: -> works for me stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue11165] Document PyEval_Call* functions

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: @Nick I assume that this still needs doing. msg128249 says you've removed the easy tag but it still shows in the keywords list. -- nosy: +BreamoreBoy ___ Python tracker __

[issue9999] test_shutil cross-file-system tests are fragile (may not test what they purport to test)

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Would you like to take this forward, or has it already happened but not been documented here? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker

[issue12401] unset PYTHON* environment variables when running tests

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: > 1. Fix the tests that might be affected by such problems, by adding the -E > option everywhere needed. Yes, this is the right fix. I'm closing this issue because it didn't get any activity since 3 years. If you are interested to add -E in tests, please open

[issue20961] Fix usages of the note directive in the documentation

2014-06-27 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue5714] CGIHTTPServer._url_collapse_path_split should live elsewhere

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: I've tried investigating this but I've got lost so I'll have to pass the buck. I've got confused because of the code moving around in Python 2 and the library changes going to Python 3 :-( -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 __

[issue21578] Misleading error message when ImportError called with invalid keyword args

2014-06-27 Thread Berker Peksag
Changes by Berker Peksag : Removed file: http://bugs.python.org/file35366/issue21578.diff ___ Python tracker ___ ___ Python-bugs-list mailing

[issue21578] Misleading error message when ImportError called with invalid keyword args

2014-06-27 Thread Berker Peksag
Berker Peksag added the comment: Here's a new patch which uses assertRaisesRegex instead of assertRaises. -- Added file: http://bugs.python.org/file35794/issue21578_v3.diff ___ Python tracker __

[issue12625] sporadic test_unittest failure

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-lis

[issue12401] unset PYTHON* environment variables when running tests

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a formal patch review please as "make test" means nothing to me. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker _

[issue12420] distutils tests fail if PATH is not defined

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone follow up on this please. See also #12401. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue777588] asyncore/Windows: select() doesn't report errors for a non-blocking connect()

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: Note: asyncio also calls getsockopt(SOL_SOCKET,SO_ERROR) to check if the connect() succeeded or not, and so it doesn't have this bug. -- ___ Python tracker __

[issue777588] asyncore/Windows: select() doesn't report errors for a non-blocking connect()

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: "Workaround: (...) e = self.socket.getsockopt(socket.SOL_SOCKET, socket.SO_ERROR)" Oh, it looks like the issue was already fixed 4 years ago: --- changeset: 63720:ba7353147507 branch: 3.1 parent: 63716:915b028b954d user:Giampaolo Rodolà date

[issue21531] Sending a zero-length UDP packet to asyncore invokes handle_close()

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: For UDP, you can use the new asyncio module for that. I agree that the asyncore documentation should mention that datagram protocols (UDP) are not supported. -- nosy: +haypo ___ Python tracker

[issue11266] asyncore does not handle EINTR in recv, send, connect, accept,

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: It was already discussed in other issues, the issue is not specific to asyncore: Python code should not handle EINTR. IMO the C module socket should handle EINTR for you. -- nosy: +haypo ___ Python tracker

[issue10880] do_mkvalue and 'boolean'

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody do a patch review on this please, it's against _testcapimodule.c. -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker ___

[issue6692] asyncore kqueue support

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: I read asyncore.patch: it is close to the selectors module, so it means duplicated efforts. I prefer to close this issuse since asyncore has been deprecated in favor of asyncio (and selectors). Using the selectors module in asyncore would not be efficient beca

[issue11453] asyncore.file_wrapper should implement __del__ and call close there to prevent resource leaks and behave like socket.socket does.

2014-06-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c9335d97628 by Victor Stinner in branch 'default': (Merge 3.4) Issue #11453: asyncore: emit a ResourceWarning when an unclosed http://hg.python.org/cpython/rev/7c9335d97628 -- ___ Python tracker

[issue12509] test_gdb fails on debug build when builddir != srcdir

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: The code from the patch was committed in r77824. -- nosy: +BreamoreBoy type: -> behavior ___ Python tracker ___

[issue11453] asyncore.file_wrapper should implement __del__ and call close there to prevent resource leaks and behave like socket.socket does.

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: I fixed the issue in Python 3.4 and 3.5, thanks for the report. In Python 3.4+, it's safe to add a destructor (__del__ method): even if the object is part of a reference cycle, it will be destroyed. It's not the case in Python 2.7. I prefer to leave Python 2.7

[issue11453] asyncore.file_wrapper should implement __del__ and call close there to prevent resource leaks and behave like socket.socket does.

2014-06-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset ae12a926e680 by Victor Stinner in branch '3.4': Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapper http://hg.python.org/cpython/rev/ae12a926e680 -- nosy: +python-dev ___ Python t

[issue11452] test_trace not symlink install clean

2014-06-27 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-l

[issue12498] asyncore.dispatcher_with_send, disconnection problem + miss-conception

2014-06-27 Thread François-Xavier Bourlet
François-Xavier Bourlet added the comment: No worries, I am glad to see asyncore going away. It was indeed badly designed in the first place. -- François-Xavier Bourlet On Fri, Jun 27, 2014 at 2:28 PM, STINNER Victor wrote: > > STINNER Victor added the comment: > > "Actually the class asyncore

[issue1371826] distutils is silent about multiple -I/-L/-R

2014-06-27 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 tracker ___ __

[issue12498] asyncore.dispatcher_with_send, disconnection problem + miss-conception

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: "Actually the class asyncore.dispatcher_with_send do not handle properly disconnection. When the endpoint shutdown his sending part of the socket, but keep the socket open in reading, the current implementation of dispatcher_with_send will close the socket wit

[issue11754] Changed test to check calculated constants in test_string.py

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: I see very little value in implementing this change, thoughts? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker ___

[issue21877] External.bat and pcbuild of tkinter do not match.

2014-06-27 Thread Zachary Ware
Zachary Ware added the comment: > compiles _tkinter is such a way that it looks for the two dlls 'everywhere' > (in pcbuild itself and 5-10 other, non-existent directories) I think you're confusing the finding of the tcl/tk DLLs with the finding of init.tcl; the DLLs are searched for on PATH (

[issue7506] multiprocessing.managers.BaseManager.__reduce__ references BaseManager.from_address

2014-06-27 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.4, Python 3.5 -Python 2.6, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-b

[issue5862] multiprocessing 'using a remote manager' example errors and possible 'from_address' code leftover

2014-06-27 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.4, Python 3.5 -Python 2.6, Python 3.0, Python 3.1 ___ Python tracker ___ ___ Python-b

[issue21877] External.bat and pcbuild of tkinter do not match.

2014-06-27 Thread Terry J. Reedy
New submission from Terry J. Reedy: dir/pydir/Tools/buildbot/external.bat downloads tcl/tk 8.y.z into dir/tcl-8.y.z and dir/tk-8.y.x and compiles them into dir/tcltk. Of critical importance are dir/tcltk/bin/tcl8yg.dll and dir/tcltk/bin/tk8yg.dll (where y is currently 5 or 6. dir/pydir/pcbuil

[issue11697] Unsigned type in mmap_move_method

2014-06-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue13103] copy of an asyncore dispatcher causes infinite recursion

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: This issue has been fixed in Python 3.5 by this change: --- changeset: 90495:2cceb8cb552b parent: 90493:d1a03834cec7 user:Giampaolo Rodola' date:Tue Apr 29 02:03:40 2014 +0200 files: Lib/asyncore.py Lib/test/test_asyncore.py Misc/NEW

[issue11452] test_trace not symlink install clean

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-lis

[issue15982] asyncore.dispatcher does not handle windows socket error code correctly (namely WSAEWOULDBLOCK 10035)

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: This issue looks like a duplicate of the issue #16133. -- nosy: +haypo ___ Python tracker ___ ___ Py

[issue16133] asyncore.dispatcher.recv doesn't handle EAGAIN / EWOULDBLOCK

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: See also the issue #15982 which is the exactly the same on Windows. (By the way, the asyncore module has been marked as deprecated in Python 3.4 in favor of asyncio, and this issue is already solved in asyncio.) --

[issue10000] mark more tests as CPython specific

2014-06-27 Thread Ned Deily
Changes by Ned Deily : -- nosy: +pjenvey ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue16133] asyncore.dispatcher.recv doesn't handle EAGAIN / EWOULDBLOCK

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: Modifying recv() to return None doesn't look correct. I read it as: "you should always use recv() output, except if the result is None: in this case, do nothing". In Python, we use exceptions for that. BUT in fact, sock.recv() already raises an exception, so a

[issue7202] "python setup.py cmd --verbose" does not set verbosity

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Assuming that this is still an issue would someone like to propose a patch? -- components: -Distutils2 nosy: +BreamoreBoy, dstufft versions: +Python 3.4, Python 3.5 -3rd party, Python 3.1, Python 3.2 ___ Python tracke

[issue9350] add remove_argument_group to argparse

2014-06-27 Thread paul j3
paul j3 added the comment: I wonder if this patch is needed. - there hasn't been discussion in 4 years - In Steven's use case, a group without any arguments, the group does not show up. A common example of an empty argument group, is a parser without any user defined arguments. p=argp

[issue7885] test_distutils fails if Python built in separate directory

2014-06-27 Thread Ned Deily
Ned Deily added the comment: It looks like this was fixed as part of the changes for Issue12141 (which were also backported to 2.7.x); test_build_ext tests are now cleanly skipped if the include file cannot be found. -- nosy: +ned.deily resolution: -> out of date stage: needs patch ->

[issue16133] asyncore.dispatcher.recv doesn't handle EAGAIN / EWOULDBLOCK

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: EWOULDBLOCK.patch: asyncio ignores BlockingIOError on sock.recv(), "except BlockingIOError:" is more portable and future proof than "_RETRY = frozenset((EWOULDBLOCK, EAGAIN))". Except of that, EWOULDBLOCK.patch change looks correct. -- nosy: +haypo _

[issue11389] unittest: no way to control verbosity of doctests from cmd

2014-06-27 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> behavior versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker ___ ___

[issue11385] TextTestRunner methods are not documented

2014-06-27 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> behavior versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-

[issue9858] Python and C implementations of io are out of sync

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Is there anything left to do on this or can it be closed as fixed? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker

[issue21582] use support.captured_stdx context managers - test_asyncore

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: The patch is simple, safe, and makes the test code cleaner. I commited your patch diana, thanks. -- nosy: +haypo ___ Python tracker ___ ___

[issue21582] use support.captured_stdx context managers - test_asyncore

2014-06-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset c2dba8ee4e96 by Victor Stinner in branch '3.4': Closes #21582: Cleanup test_asyncore. Patch written by diana. http://hg.python.org/cpython/rev/c2dba8ee4e96 New changeset f1cd0aa1561a by Victor Stinner in branch 'default': (Merge 3.4) Closes #21582:

[issue21856] memoryview: test slick clamping

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: Memoryview should definitely have the same slice tests as other sequence objects. Go ahead and check. I believe slice clamping itself should now be done by slice.indices, not by each class. S.indices(len) -> (start, stop, stride) Assuming a seque

[issue8314] test_ctypes fails in test_ulonglong on sparc buildbots

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 ___ Python tracker ___ __

[issue11273] asyncore creates selec (or poll) on every iteration

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: "On the other hand, it appears to be quite difficult to integrate such a massive change into asyncore in a fully backward compatible manner. At least, it's not clear to me how to do this without breaking code relying on map's parameter and asyncore.socket_map.

[issue20560] tkFileFilter.c: ostypeCount not initialized?

2014-06-27 Thread Zachary Ware
Zachary Ware added the comment: > Is there an open issue to fix the undocumented need to copy? I don't think so. -- ___ Python tracker ___ __

[issue10195] Memory allocation fault-injection?

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: Related issues: #19817 "tracemalloc add a memory limit feature" and #19835 "Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted". -- ___ Python tracker

[issue11279] test_posix and lack of "id -G" support - less noise required?

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can our Solaris gurus take this on please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bu

[issue20560] tkFileFilter.c: ostypeCount not initialized?

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: The problem is gone after re-running external.bat -- and manually copying the dlls into pcbuild. It there an open issue to fix the undocumented need to copy? -- ___ Python tracker

[issue21856] memoryview: no overflow on large slice values (start, stop, step)

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: If the behaviour is well expected, I suggest to add an unit test: memoryview_test_large_slice.patch. -- keywords: +patch resolution: not a bug -> status: closed -> open Added file: http://bugs.python.org/file35793/memoryview_test_large_slice.patch ___

[issue10236] Sporadic failures of test_ssl

2014-06-27 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue4899] doctest should support fixtures

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: I am closing this for both the general reasons already given and the lack of a proposed api that could programmed, Hence there is no example code that would run and hence no specifics to approve. If someone wanted to pursue this, python-ideas would be a better

[issue5930] Transient error in multiprocessing (test_number_of_objects)

2014-06-27 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue11697] Unsigned type in mmap_move_method

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: The if conditional referenced in msg132364 was changed in r79606 but dest, src and cnt are still unsigned long and the call to PyArg_ParseTuple is unchanged. -- nosy: +BreamoreBoy ___ Python tracker

[issue21864] Error in documentation of point 9.8 'Exceptions are classes too'

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: The preceding sentence "There are two new valid (semantic) forms for the raise statement" is obsolete also as there is no other form (other than 'raise', which should not be in the tutorial previously). To rewrite this section for 3.x would require looking at

[issue10000] mark more tests as CPython specific

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: How is pypy supporting Python 3.2.5 without this being done? Or has it been done but perhaps documented elsewhere? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker <

[issue21876] os.rename(src, dst) does nothing when src and dst files are hard-linked

2014-06-27 Thread Aaron Swan
Aaron Swan added the comment: Although using the mv command *does* remove the src file on red hat linux, I can accept that the POSIX requirement that the source *must* be removed might not apply if source is the same as the destination file. It would be nice if the behavior was consistent, but

[issue21856] memoryview: no overflow on large slice values (start, stop, step)

2014-06-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: #21831 was about size not being properly clamped. Here it is. -- nosy: +terry.reedy resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker

[issue7885] test_distutils fails if Python built in separate directory

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still an issue that needs addressing? I can't try it myself as I use Windows. -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-06-27 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Windows ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue16296] Patch to fix building on Win32/64 under VS 2010

2014-06-27 Thread Zachary Ware
Changes by Zachary Ware : -- components: +Distutils -Build, Windows nosy: +dstufft, eric.araujo -zach.ware status: languishing -> open type: compile error -> behavior versions: +Python 3.5 -Python 3.3 ___ Python tracker

[issue10402] sporadic test_bsddb3 failures

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: As #3892 has been closed this can also be closed. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Py

[issue3620] test_smtplib is flaky

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker ___ __

[issue21876] os.rename(src, dst) does nothing when src and dst files are hard-linked

2014-06-27 Thread Esa Peuha
Esa Peuha added the comment: This looks like a documentation bug. Functions in module os are usually just thin wrappers around the underlying OS functions, and POSIX states that doing nothing is the correct thing to do here. (It is arguably a bug in early Unix implementations that got mistaken

[issue5930] Transient error in multiprocessing (test_number_of_objects)

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker ___ __

[issue20560] tkFileFilter.c: ostypeCount not initialized?

2014-06-27 Thread Zachary Ware
Zachary Ware added the comment: I'm going to go ahead and close this, since it should be fixed. Terry, if you do find that this is still an issue, please reopen. -- resolution: -> fixed stage: needs patch -> resolved status: pending -> closed ___ P

[issue21873] Tuple comparisons with NaNs are broken

2014-06-27 Thread Raymond Hettinger
Raymond Hettinger added the comment: FWIW, the logic for tuple ordering is a bit weird due to rich comparisons. Each pair of elements is first checked for equality (__eq__). Only if the equality comparison returns False does it call the relevant ordering operations (such as __lt__). The d

[issue14060] Implement a CSP-style channel

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: @Matt are you interested in following up on this? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker ___

[issue10195] Memory allocation fault-injection?

2014-06-27 Thread STINNER Victor
STINNER Victor added the comment: This feature is implemented in my external project: https://bitbucket.org/haypo/pyfailmalloc It was discussed to integrate it in Python 3.4, but I foscused my efforts on the PEP 445 (malloc API) and 454 (tracemalloc). -- __

[issue10236] Sporadic failures of test_ssl

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker ___ _

[issue10195] Memory allocation fault-injection?

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: Do you folks want to pick this up again as it seems a handy thing to have in our toolbox? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2 ___ Python tracker ___

[issue21876] os.rename(src, dst) does nothing when src and dst files are hard-linked

2014-06-27 Thread Aaron Swan
New submission from Aaron Swan: On Linux Red Hat os.rename(src,dst) does nothing when src and dst files are hard-linked. It seems like the expected behavior would be the removal of the src file. This would be in keeping with the documentation that states: "On Unix, if dst exists and is a file

[issue8070] Infinite loop in PyRun_InteractiveLoopFlags() if PyRun_InteractiveOneFlags() raises an error

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: I've failed to reproduce this using latest default on Windows 7, would someone else like to try please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker

[issue5217] testExtractDir (test.test_zipfile.TestWithDirectory) fails when python built with srcdir != builddir

2014-06-27 Thread Berker Peksag
Berker Peksag added the comment: > Presumably this can be closed as "out of date"? Yes. $ mkdir objdir $ cd objdir $ .././configure $ make $ ./python -m test -v test_zipfile Ran 164 tests in 38.202s OK (skipped=1) 1 test OK. -- nosy: +berker.peksag resolution:

[issue678264] test_resource fails when file size is limited

2014-06-27 Thread Mark Lawrence
Mark Lawrence added the comment: The inline patch in msg117130 has never been committed from what I can see. Can somebody review it please as I'm assuming that it's still valid. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.2 ___

  1   2   >