[issue9808] Implement os.getlogin on Windows

2010-09-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: It's the first time I see the _countof() macro. There is no other usage of it in python codebase. Could you change it for something more easy for non-Windows readers? -- nosy: +amaury.forgeotdarc ___ Python t

[issue9315] The trace module lacks unit tests

2010-09-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: It looks like 3.1 with computed gotos produces the yet another different tracing of list comprehensions: 2: l = [i for 10: i in 1: range(10)] -- ___ Python tracker

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-14 Thread Carlos Henrique Romano
Carlos Henrique Romano added the comment: Improving tests -- Added file: http://bugs.python.org/file18887/python-distutils_mkpath_filemode-v2.diff ___ Python tracker ___ ___

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-14 Thread Carlos Henrique Romano
Changes by Carlos Henrique Romano : Removed file: http://bugs.python.org/file18885/python-distutils_mkpath_filemode-v1.diff ___ Python tracker ___ ___

[issue9315] The trace module lacks unit tests

2010-09-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > Antoine suggests to relax the test and only check > if the count is within a range (12, 13). This feels like implementation driven testing. I would prefer to disable the offending test pending further investigation into the core cause. It is not cle

[issue9808] Implement os.getlogin on Windows

2010-09-14 Thread Brian Curtin
Changes by Brian Curtin : -- resolution: -> accepted ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue9808] Implement os.getlogin on Windows

2010-09-14 Thread Jon Anglin
Jon Anglin added the comment: I went ahead and moved the test skip decorator to the class level as suggested by Brian Curtin, see issue9808-new.diff. -- Added file: http://bugs.python.org/file18886/issue9808-new.diff ___ Python tracker

[issue9851] multiprocessing socket timeout will break client

2010-09-14 Thread R. David Murray
Changes by R. David Murray : -- nosy: +asksol, jnoller ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue2236] Distutils' mkpath implementation ignoring the "mode" parameter

2010-09-14 Thread Carlos Henrique Romano
Carlos Henrique Romano added the comment: Patch updated, now it includes test. -- nosy: +chromano Added file: http://bugs.python.org/file18885/python-distutils_mkpath_filemode-v1.diff ___ Python tracker __

[issue767645] incorrect os.path.supports_unicode_filenames

2010-09-14 Thread Ned Deily
Ned Deily added the comment: No problems noted with a quick test of posixpath_darwin.patch on 10.6 so looks good. It will get regression tested on more configurations sometime later. -- ___ Python tracker _

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le mardi 14 septembre 2010 à 23:19 +, Giampaolo Rodola' a écrit : > I've never used socket.socket.makefile so I'm not sure, but its > documentation says: > > > The socket must be in blocking mode (it can not have a timeout). > > If the statement is there b

[issue7936] sys.argv contains only scriptname

2010-09-14 Thread Bill Hayes
Bill Hayes added the comment: I found this page while encountering the same problem (only one argument, the scriptname, being passed in from the command line), and wanted to post the following workaround. I'm running Vista and using Python 2.6. In summary I had to have 'python' at the beginni

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: I've never used socket.socket.makefile so I'm not sure, but its documentation says: > The socket must be in blocking mode (it can not have a timeout). If the statement is there because EAGAIN/EWOULDBLOCK were originally raised then it should be removed, o

[issue9802] Document 'stability' of builtin min() and max()

2010-09-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Documented the current behavior in r84822. Mark, if you're free on IRC at some point, I would like to discuss further. -- ___ Python tracker ___

[issue6884] Impossible to include file in sdist that starts with 'build' on Win32

2010-09-14 Thread Chris Withers
Chris Withers added the comment: This is a regex bug, and it just bit me again :-( Because of this bug, you cannot currently build a bdist_egg (and therefore cannot install with easy_install) http://pypi.python.org/pypi/buildout-versions on windows. The only choice I have is to rename the 'b

[issue9315] The trace module lacks unit tests

2010-09-14 Thread Florent Xicluna
Florent Xicluna added the comment: The issue on 3.1 happens when Python is configured --with-computed-gotos. (this is the case on all 3.1 buildbots) But this issue does not happen on 3.x branch. On this branch computed-gotos is the default, but the switch --without-computed-gotos does not make

[issue9857] SkipTest in tearDown is reported an as an error

2010-09-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : Raising SkipTest when in a tearDown method is reported as an error, rather than a skipped test. Now doing this sounds like a weird use case, but it would be actually useful when you have a worker thread, and the tearDown method collects the exception raised

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : Added file: http://bugs.python.org/file18884/sockio_nonblock.patch ___ Python tracker ___ ___ Python-bugs-list mail

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : Removed file: http://bugs.python.org/file18883/sockio_nonblock.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a patch. The tests are only run for unbuffered objects (buffering=0), since the behaviour of buffered objects is driven by BufferedReader and friends, not by the wrapped SocketIO. -- keywords: +patch nosy: +giampaolo.rodola Added file: http://

[issue9728] Docs point to FAQ Section 3, but FAQs are not numbered

2010-09-14 Thread Éric Araujo
Éric Araujo added the comment: Thanks for the investigation! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6164] [AIX] Patch to correct the AIX C/C++ linker argument used for 'runtime_library_dirs'

2010-09-14 Thread Éric Araujo
Éric Araujo added the comment: Oops, this didn’t make it into 3.1.2. Tarek, want me to commit it? -- ___ Python tracker ___ ___ Pytho

[issue9848] setup.py contains needless references to built-in _weakref module

2010-09-14 Thread Brett Cannon
Brett Cannon added the comment: Fixed in r84819 for 3.2. No point in backporting since it doesn't hurt anything. Thanks for the report! -- assignee: -> brett.cannon nosy: +brett.cannon resolution: -> fixed status: open -> closed ___ Python tracker

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: The problem with RawIOBase.read is fixed in r84814. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue2292] Missing *-unpacking generalizations

2010-09-14 Thread Éric Araujo
Éric Araujo added the comment: Does yield *it mean yield iter(tuple(it)) or for i in it: yield i ? -- nosy: +eric.araujo ___ Python tracker ___ _

[issue1552] fromfd() and socketpair() should return wrapped sockets

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: socketpair() was fixed in 3.x in r84813. -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker __

[issue7994] object.__format__ should reject format strings

2010-09-14 Thread Eric Smith
Eric Smith added the comment: See issue 9856 for changing this to a DeprecationWarning in 3.3. -- status: open -> closed ___ Python tracker ___ __

[issue9856] Change object.__format__(s) where s is non-empty to a DeprecationWarning

2010-09-14 Thread Eric Smith
New submission from Eric Smith : In 3.3 the existing PendingDeprecationWarning needs to become a DeprecationWarning. In 3.4 it will become an error. I'll change 3.3 after 3.2 is released. See issue 7994 for the original PendingDeprecationWarning discussion. -- assignee: eric.smith com

[issue9855] Complex number slicing neither works nor causes an error on immediate use

2010-09-14 Thread Tom
Tom added the comment: Thanks! I'm not surprised that it was something stupidofme like that. Sorry to have troubled you. :) -- ___ Python tracker ___ _

[issue9855] Complex number slicing neither works nor causes an error on immediate use

2010-09-14 Thread Eric Smith
Eric Smith added the comment: The precedence doesn't work the way you think it does. Your example with the intermediate variable is the same as: >>> ((0+1j)*(0+1j)).imag 0.0 >>> ((0+1j)*(0+1j)).real -1.0 Note the extra level of parens so that .imag and .real are applied to the result of the

[issue9212] dict_keys purports to implement the Set ABC, but is missing the isdisjoint method

2010-09-14 Thread Daniel Stutzbach
Changes by Daniel Stutzbach : -- stage: patch review -> committed/rejected status: open -> closed versions: -Python 2.7, Python 3.1 ___ Python tracker ___ ___

[issue9213] range purports to implement the Sequence ABC, but is missing index and count methods

2010-09-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Sounds reasonable to me. I'll close this and the related 9212 (both fixes are already committed to the py3k branch). -- stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue9855] Complex number slicing neither works nor causes an error on immediate use

2010-09-14 Thread Tom
New submission from Tom : I hope the title of this makes sense. I've been out of things for a long time. Going through the Python tutorial (http://docs.python.org/tutorial/introduction.html) I departed from the script to try something. It gave neither of the results I had thought it might.

[issue9854] SocketIO should return None on EWOULDBLOCK

2010-09-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : SocketIO claims to implement RawIOBase, but it lets blocking IO errors pass through on non-blocking sockets: >>> s = socket.create_connection(("python.org", 80)); s.settimeout(0.0) >>> f = s.makefile("rb", buffering=0) >>> f.readinto(bytearray(10)) Traceback

[issue9728] Docs point to FAQ Section 3, but FAQs are not numbered

2010-09-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Fixed in r84810, r84811, and 84812. For anyone curious, the old FAQ entry is here: http://web.archive.org/web/20010203161100/http://www.python.org/doc/FAQ.html#3.24 -- resolution: -> accepted stage: needs patch -> committed/rejected status: open ->

[issue9728] Docs point to FAQ Section 3, but FAQs are not numbered

2010-09-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Nevermind... archive.org has it. :-) -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue9728] Docs point to FAQ Section 3, but FAQs are not numbered

2010-09-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: It looks like the FAQ used be generated using Tools/faqwiz/faqwiz.py (which no longer exists). According to that file: --- This is a CGI program that maintains a user-editable FAQ. It uses

[issue1552] fromfd() and socketpair() should return wrapped sockets

2010-09-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9728] Docs point to FAQ Section 3, but FAQs are not numbered

2010-09-14 Thread Daniel Stutzbach
Daniel Stutzbach added the comment: Where does/did the FAQ live in the version control tree? -- ___ Python tracker ___ ___ Python-bugs

[issue9853] Wrong signature for SSLSocket.recvfrom and SSLSocket.sendto

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fixed in r84807 (3.x) and r84809 (3.1). -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue9729] Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patch committed in r84806. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue2292] Missing *-unpacking generalizations

2010-09-14 Thread Andy Buckley
Changes by Andy Buckley : -- nosy: +andybuckley ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue9315] The trace module lacks unit tests

2010-09-14 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Updated Makefile in r84803 - r84805. -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue9360] nntplib cleanup

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Here is a further, still work-in-progress, patch. I'm posting it here so that interested people can give advice. -- Added file: http://bugs.python.org/file18882/nntplib_cleanup3.patch ___ Python tracker

[issue9853] Wrong signature for SSLSocket.recvfrom and SSLSocket.sendto

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Similar problem for sendto() (again, see issue9729). socket.sendto() has an interesting signature (the middle `flags` argument is optional, not the following `addr`...). -- title: Wrong signature for SSLSocket.recvfrom -> Wrong signature for SSLSocket

[issue9729] Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: sendto() has a similar problem. socket.sendto() takes (data, flags=0, addr), but SSLSocket.sendto() incorrectly forwards the arguments. Updated patch attached. -- Added file: http://bugs.python.org/file18881/issue9729-3.patch

[issue9853] Wrong signature for SSLSocket.recvfrom

2010-09-14 Thread Antoine Pitrou
New submission from Antoine Pitrou : SSLSocket.recvfrom includes an `addr` argument in its signature, but socket.recvfrom doesn't take such an argument. It should be removed. (obviously, this method is neither tested nor used in the real-world...) In 2.7, this is taken care of by the patch in i

[issue1563807] _ctypes built with GCC on AIX 5.3 fails with ld ffi error

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue1745108] 2.5.1 curses panel segfault in new_panel on aix 5.3

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue5718] Problem compiling ffi part of build on AIX 5.3.

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue8882] socketmodule.c`getsockaddrarg() should not check the length of sun_path

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue678264] test_resource fails when file size is limited

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue713169] test_pty fails on HP-UX and AIX when run after test_openpty

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue730467] Not detecting AIX_GENUINE_CPLUSPLUS

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue678250] test_mmap failling on AIX

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue7657] test_ctypes failure on AIX 5.3

2010-09-14 Thread Sébastien Sablé
Changes by Sébastien Sablé : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue9729] Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: The recvfrom() signature is wrong (it doesn't take an address argument). Here is an updated patch. -- Added file: http://bugs.python.org/file18880/issue9729-2.patch ___ Python tracker

[issue9846] ZipExtFile provides no mechanism for closing the underlying file object

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Antoine, any reason not to put the close in the ZipFileExt close method > instead of a __del__ method? (And document it, of course). You are right, a close() method would be enough. Furthermore, ZipExtFile already supports the context manager protocol (imp

[issue9729] Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Andrew Bennetts
Andrew Bennetts added the comment: > Yes, but such a rearchitecting to the socket module is out of question > for 2.x, which is in bugfix mode. Yes of course, which is why I made the conservative fix instead :) -- ___ Python tracker

[issue6006] ffi.c compile failures on AIX 5.3 with xlc

2010-09-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue6164] [AIX] Patch to correct the AIX C/C++ linker argument used for 'runtime_library_dirs'

2010-09-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +sable ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Sébastien Sablé
Sébastien Sablé added the comment: cc(_r) and xlc(_r) refer to the same binary of the same compiler, but they change the default configuration of that compiler. The documentation indicates: DESCRIPTION The invocation commands compile C and C++ source files. The commands and

[issue6011] python doesn't build if prefix contains non-ascii characters

2010-09-14 Thread STINNER Victor
STINNER Victor added the comment: For non-ascii directory name but ascii locale (eg. C locale), we have 3 choices: a- read Makefile as a binary file b- use the PEP 383 c- refuse to compile (a) doesn't seem easy because it looks like distutils use the unicode type for all paths. (b) supposes

[issue9850] obsolete macpath module dangerously broken and should be removed

2010-09-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: MacOS9 is already unsupported, except for macpath all traces of OS9 support are gone with the possible exception of distutils (I removed traces of OS9 support code in 3.2 and those got restored when Tarek replaced distutils by the version from the 3.1 branch

[issue9852] test_ctypes fail with clang

2010-09-14 Thread Ismail Donmez
New submission from Ismail Donmez : This is probably a clang bug but this is the only test failing with clang: == FAIL: test_byte (ctypes.test.test_cfuncs.CFunctions)

[issue6011] python doesn't build if prefix contains non-ascii characters

2010-09-14 Thread STINNER Victor
STINNER Victor added the comment: Warning: "use the PEP 383" may impact other distutils component because the path may be written into to other files, which mean that we have to use errors='surrogateescape' for these files too. -- ___ Python tracke

[issue9850] obsolete macpath module dangerously broken and should be removed

2010-09-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'm -0 on removing the module wholesale because parts of OSX still use MacOS9 style paths (in particular some Carbon APIs and AppleScript). I'm +1 on removing all functions that aren't path manipulation code, that is 'macpath.join' would stay while 'macpath.

[issue6839] zipfile can't extract file

2010-09-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: I agree with the change, but the code should be factorized in a function (normalize_filename for example) -- nosy: +amaury.forgeotdarc ___ Python tracker ___

[issue9850] obsolete macpath module dangerously broken and should be removed

2010-09-14 Thread STINNER Victor
STINNER Victor added the comment: The solution may be different depending on Python version. I propose to keep macpath in Python 2.7, just because it's too late to change such thing in Python2. But we may mark macpath as deprecated, eg. "macpath will be removed in Python 3.2" (see above). I s

[issue6839] zipfile can't extract file

2010-09-14 Thread Ronald Oussoren
Ronald Oussoren added the comment: I'd prefer if the code no longer checked if the filename in the directory matches the name in the per-file header. The reason of that is that the two don't have to match: it is relatively cheap to rename a file in the zipfile by rewriting the directory while

[issue767645] incorrect os.path.supports_unicode_filenames

2010-09-14 Thread STINNER Victor
STINNER Victor added the comment: > There seems to be some confusion about the macpath.py module. (...) Oops. I thought that Mac OS X uses macpath, but in fact it is posixpath. Can you try my new patch posixpath_darwin.patch? I reopen the issue because I patched the wrong module. I suppose th

[issue9835] ZipFile unix external attributes incorrect for entry written with writestr

2010-09-14 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This has already been corrected by issue3394, and is at least present in python 2.6. -- nosy: +amaury.forgeotdarc resolution: -> out of date status: open -> closed superseder: -> zipfile.writestr doesn't set external attributes, so files are e

[issue1926] NNTPS support in nntplib

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: It should be noted that there are two possibilities for encrypted NNTP: - NNTPS, that is NNTP-over-SSL on port 563, as proposed here - plain NNTP with the STARTTLS capability as described in RFC 4642 For the record, gmane provides the former (on snews.gmane.org

[issue1926] NNTPS support in nntplib

2010-09-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- dependencies: +nntplib cleanup ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue9729] Unconnected SSLSocket.{send, recv} raises TypeError: 'member_descriptor' object is not callable

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Nice, thank you. I will look at the patch and commit it if everything's fine. > A nicer solution is to simply make socket.socket actually be a simple > subclass of _socket.socket rather than the weird decorator it is now. > This has already happened on the py3

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: > cc_r does not seems to be able to compile py3k, so it seems to be a bad > idea to force it by default. Python should be able to compile with any C89-compliant compiler, so it seems a good idea to open a bug for compile errors instead. In this case, the fix

[issue9815] test_tarfile sometimes ends with error "Cannot remove dir"

2010-09-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: You shouldn't use DEBUG_LEAK except for debugging purposes :) As the doc mentions: “To debug a leaking program call gc.set_debug(gc.DEBUG_LEAK). Notice that this includes gc.DEBUG_SAVEALL, causing garbage-collected objects to be saved in gc.garbage for inspec

[issue1633863] AIX: configure ignores $CC

2010-09-14 Thread Sébastien Sablé
Sébastien Sablé added the comment: cc_r does not seems to be able to compile py3k, so it seems to be a bad idea to force it by default. cc_r -qlanglvl=extc89 -DNDEBUG -O -O2 -O2 -I. -IInclude -I./Include -I/home/cis/buildbot/support-buildbot/include -I/home/cis/buildbot/support-bui

[issue9315] The trace module lacks unit tests

2010-09-14 Thread Florent Xicluna
Florent Xicluna added the comment: It looks like lots of 3.1 buildbots are unhappy with r84783. But the test passes on my local 3.1 checkout. == FAIL: test_trace_list_comprehension (test.test_trace.TestLineCounts)

[issue9851] multiprocessing socket timeout will break client

2010-09-14 Thread hume
hume added the comment: the above test is on windows -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue9851] multiprocessing socket timeout will break client

2010-09-14 Thread hume
New submission from hume : when use multiprocessing managers, while use socket to communicate between server process and client process, if I used the global socket timeout feature(no matter how large the value is) the client will always say File "c:\python27\lib\multiprocessing\connection.p

[issue9315] The trace module lacks unit tests

2010-09-14 Thread Georg Brandl
Georg Brandl added the comment: Yep. But there are other files to edit for the Windows distribution. -- ___ Python tracker ___ ___ Py