Changes by Andrew Stormont :
--
title: python socket module fails to build on Solaris when -zignore is in
LDFLAGS -> [PATCH] python socket module fails to build on Solaris when -zignore
is in LDFLAGS
___
Python tracker
<http://bugs.pyth
Andrew Stormont added the comment:
Bump.
--
status: open -> languishing
___
Python tracker
<http://bugs.python.org/issue23895>
___
___
Python-bugs-list mai
Andrew Stormont added the comment:
Bump.
--
___
Python tracker
<http://bugs.python.org/issue23895>
___
___
Python-bugs-list mailing list
Unsubscribe:
Andrew Stormont added the comment:
The -z ignore option is actually exposing issues that could cause a problem at
runtime. If the socket module were imported and libsocket/libnsl hadn't
already been loaded (i.e pulled in by the loader as a dependency of another
module) the loader would
Andrew Stormont added the comment:
Bump.
Would be nice to get this included in python 2.7.11.
I also have a similar fix for the multiprocessing module but I won't bother
submitting it if it will get ignored.
--
status: open -> lan
New submission from Andrew Stormont:
The socket module fails to build when -zignore is in LDFLAGS. This option
changes the linker behaviour so it will only resolve against the libraries
linked in explicitly instead of doing resolution recursively against their
dependencies too
Andrew Stormont added the comment:
I think you mean:
self.producer_fifo.extendleft([data, first])
Instead of:
self.producer_fifo.extendleft([first, data])
No?
--
___
Python tracker
<http://bugs.python.org/issue17
Andrew Stormont added the comment:
Great. Everybody's happy now, surely?
--
___
Python tracker
<http://bugs.python.org/issue17925>
___
___
Python-bugs-list m
Andrew Stormont added the comment:
What about changing:
self.producer_fifo.appendleft(first)
self.producer_fifo.appendleft(data)
To
self.producer_fifo.extendleft([data, first])
Assuming deque's extendleft is actually thread safe.
--
___
P
Andrew Stormont added the comment:
Looks like a reasonable fix to me. What needs to be done to get this
integrated?
--
nosy: +andy_js
___
Python tracker
<http://bugs.python.org/issue17
10 matches
Mail list logo