Changes by Ned Deily :
--
nosy: +roger.serwy, terry.reedy -ned.deily
___
Python tracker
<http://bugs.python.org/issue23672>
___
___
Python-bugs-list mailin
Ned Deily added the comment:
FD_CLOEXEC is first support on OS X 10.5. Here's a patch to skip the test on
earlier systems: tested on 10.4, 10.5, and 10.10.
--
nosy: +ned.deily
stage: -> commit review
Added file: http://bugs.python.org/file38516/issue23458_tig
Ned Deily added the comment:
$ sw_vers
ProductName:Mac OS X
ProductVersion: 10.4.11
BuildVersion: 8S165
$ ./python
Python 3.4.3+ (3.4:910a7a540a31, Mar 17 2015, 03:33:01)
[GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin
Type "help", "copyright", "credi
Changes by Ned Deily :
--
components: +Build
nosy: +ned.deily, steve.dower, zach.ware
stage: -> needs patch
versions: +Python 2.7, Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issu
Changes by Ned Deily :
--
title: Upgrade copy of OpenSSL bundled with Python -> Update Windows and OS X
installer OpenSSL to 1.0.2a
___
Python tracker
<http://bugs.python.org/issu
Ned Deily added the comment:
Superseded by Issue23686, OpenSSL 1.0.2a
--
resolution: -> out of date
stage: patch review -> resolved
status: open -> closed
superseder: -> Update Windows and OS X installer OpenSSL to 1.0.2a
___
Python tr
Ned Deily added the comment:
The buildbot is now green -> closed.
--
resolution: -> fixed
stage: commit review -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python
Changes by Ned Deily :
--
nosy: +bquinlan
___
Python tracker
<http://bugs.python.org/issue23697>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +davin, sbt
versions: -Python 3.2, Python 3.3, Python 3.6
___
Python tracker
<http://bugs.python.org/issue23698>
___
___
Pytho
Ned Deily added the comment:
The code in question was added a long time ago by Ronald as part of the initial
OS X universal build support (3078fdb7cf3d for Issue1488098). I'm not exactly
sure what problem it was trying to solve ao I'm not sure that it's 100% safe to
totall
Changes by Ned Deily :
--
nosy: +bquinlan
versions: -Python 3.2, Python 3.3, Python 3.4, Python 3.6
___
Python tracker
<http://bugs.python.org/issue23
Changes by Ned Deily :
--
nosy: +pitrou
___
Python tracker
<http://bugs.python.org/issue23706>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +neologix
___
Python tracker
<http://bugs.python.org/issue23707>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
Thanks for the report. Your example is of a set comprehension. Set and
dictionary comprehensions were Python 3.2 features backported to Python 2.7 for
compatibility and thus had no existing Python 2 compatibility concerns. If you
try a similar example using
Changes by Ned Deily :
--
Removed message: http://bugs.python.org/msg238562
___
Python tracker
<http://bugs.python.org/issue23714>
___
___
Python-bugs-list mailin
Ned Deily added the comment:
Thanks for the report. Your example is of a set comprehension. Set and
dictionary comprehensions were Python 3.1 features backported to Python 2.7 for
compatibility and thus had no existing Python 2 compatibility concerns. If you
try a similar example using
Ned Deily added the comment:
1.0.2a is now available.
https://www.openssl.org/source/openssl-1.0.2a.tar.gz
The OS X 10.5 installer builds are now updated. Leaving the issue open for
updates to the Windows installers.
--
___
Python tracker
<h
Changes by Ned Deily :
--
assignee: -> docs@python
components: +Documentation -Library (Lib)
nosy: +docs@python
stage: -> patch review
___
Python tracker
<http://bugs.python.org/i
Ned Deily added the comment:
Bringing an umbrella distribution into the CPython release process seems to me
like a very big leap and would that requires very careful consideration. It
would introduce a whole load of other dependencies into our release process,
i.e. that the third-party
Ned Deily added the comment:
This issue seems to be expanding widely in scope and it is not at all clear to
me what actionable items would come out of it. It started as a very
Window-specific problem and now seems to somehow be being extended to the whole
Python ecosphere. What about the OS
Ned Deily added the comment:
The test_ftp connection timeout error failure (seen on some platforms) is a
duplicate of Issue22289.
The test_readline failure is a duplicate of, among others, Issue22647 and is
believed to no longer occur with the current Python 3.4.3 (released 2015-02-25)
and a
Ned Deily added the comment:
Here's an updated patch for 3.4 and default. To test it, I had to inject a
faulty test server with a timeout error, as the test with the dead URL skips
properly on my system. For 2.7, the test doesn't fail for me even with the
injected server so I p
Ned Deily added the comment:
Thanks for the review. Fix committed for release in 3.4.4 and 3.5.0.
--
resolution: -> fixed
stage: commit review -> resolved
status: open -> closed
versions: -Python 2.7
___
Python tracker
<http://bug
Ned Deily added the comment:
I don't recall ever seeing that failure on OS X systems. Can you patch the
test to find out which address lookup is not failing as expected and then check
your host configuration?
--
___
Python tracker
Ned Deily added the comment:
Slavek, this issue and its superseder are both closed so comments here will
likely not be acted on.
--
nosy: +ned.deily
stage: needs patch -> resolved
___
Python tracker
<http://bugs.python.org/issu
Changes by Ned Deily :
--
nosy: +doko
stage: -> patch review
versions: +Python 2.7, Python 3.5
___
Python tracker
<http://bugs.python.org/issue23767>
___
_
Changes by Ned Deily :
--
nosy: +brett.cannon
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue23773>
___
___
Python-bugs-list mai
Ned Deily added the comment:
The behavior noted in Issue18378 isn't an Apple bug; it's a GNU vs BSD
difference. Can you avoid the problem by calling locale.getlocale() in the
main program before creating any threads?
--
___
Python trac
New submission from Ned Deily:
POSIX 2008 provides a system interface, uselocale, to set locales individually
on a thread basis rather than just process global, as currently supported with
locale.setlocale(). uselocale is supported in most current GNU libc, BSD, and
OS X releases. While
Changes by Ned Deily :
--
nosy: +alex, christian.heimes, dstufft
___
Python tracker
<http://bugs.python.org/issue23804>
___
___
Python-bugs-list mailing list
Unsub
Changes by Ned Deily :
--
resolution: fixed ->
stage: resolved -> needs patch
status: closed -> open
___
Python tracker
<http://bugs.python.or
Ned Deily added the comment:
Original title: "test_socket fails under -Werror"
These are long-time, normally non-fatal warnings when running test_socket on OS
X with Python 3 independent of -Werror, introduced with the socket sendmsg()
and recvmsg() feature in the changes for Issue
Changes by Ned Deily :
--
nosy: +davin, sbt
___
Python tracker
<http://bugs.python.org/issue6766>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
@ddvento: This issue has been closed and the fixes for it released several
years ago. Comments added here will likely be ignored. If you believe there
is a problem with current releases (for Python 2, Python 2.7.9 is current),
please open a new issue and
Ned Deily added the comment:
This is essentially a duplicate of Issue3467 and various other similar issues.
While it may not be easy to justify the special case in setup.py for OS X (the
reason was primarily for OS X installer builds), it would be even harder to
justify adding another
Ned Deily added the comment:
My apologies, I replied a bit too hastily, thinking incorrectly that your
suggested change was just for sqlite3. While the comments above still apply,
there is already an open request for the more general feature (and more) under
Issue21571. So I suggest further
Changes by Ned Deily :
--
nosy: +haypo
___
Python tracker
<http://bugs.python.org/issue23863>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
Ned Deily added the comment:
Arnon, what version of sqlite3 is the Python linked with? Try:
python3.4 -c "import sqlite3;print(sqlite3.sqlite_version)"
What kind of database access is happening in your program, i.e. strictly
multi-read, one writer many reads, multiple-writ
Ned Deily added the comment:
Thanks for the patches. For future reference, it would be better to open
separate issues for problems found in different areas of Python as there may be
different reviewers and dependencies. For example, libffi is a separate
project, mirrored with some patches
Changes by Ned Deily :
--
assignee: -> ned.deily
stage: -> patch review
versions: +Python 3.5 -Python 3.4
___
Python tracker
<http://bugs.python.org/i
Changes by Ned Deily :
--
nosy: +haypo
___
Python tracker
<http://bugs.python.org/issue23886>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
Ned Deily added the comment:
Russell, we talked a bit about this topic at the Python Language Summit today
(after watching your excellent video). I think there was general agreement
there that having iOS support would be "a good thing" along with the
recognition that the requir
Changes by Ned Deily :
--
nosy: +jcea
___
Python tracker
<http://bugs.python.org/issue23895>
___
___
Python-bugs-list mailing list
Unsubscribe:
https://mail.pyth
Changes by Ned Deily :
--
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue23896>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
Or perhaps a generic Python ioon. Is there a tkinter icon? I think the
default is just the Tk-supplied icon. Also, there are platform differences.
AFAIK, on OS X the application icon cannot be changed while running;
information about icon files is specified in
Ned Deily added the comment:
LGTM. I think it should be backported to 2.7.
--
nosy: +ned.deily
versions: +Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue17
Ned Deily added the comment:
LGTM
--
nosy: +ned.deily
___
Python tracker
<http://bugs.python.org/issue12425>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
Creating a new import dependency to idlelib.PyShell in turtle.py doesn't seem
like a good idea since turtle.py does not currently need to be used with IDLE
(unlike turtledemo which does have an existing dependency on idlelib). Perhaps
a better way would be t
Ned Deily added the comment:
In general, references in the devguide to UNIX are intended to include OS X.
In other words, in the guide "UNIX" is generally equivalent to "not Windows" at
least for Python 3 now that other, ancient non-POSIX platforms, like classic
MacOS o
Ned Deily added the comment:
Alex, I think you are not building with an up-to-date source tree. This
problem and others like it related to a two-digit OS X version number (10.8 ->
10.10) should have all been fixed with the changes for Issue21811 which were
pushed nearly a year ago.
Ned Deily added the comment:
The updates look good to me, thanks! Are you able to push this? If not, I can
do it.
--
stage: -> commit review
___
Python tracker
<http://bugs.python.org/issu
Ned Deily added the comment:
This also appears to be due to not building with an up-to-date version of the
source (see msg240759 in Issue23939).
--
resolution: -> out of date
stage: -> resolved
status: open -> pending
___
Python track
Ned Deily added the comment:
Ernest, sorry you are having problems. Issues with using the tracker itself
are handled elsewhere. Click on the "Report Tracker Problem" link in the
"Help" section at the bottom of the left-hand column of this web page and that
sho
Ned Deily added the comment:
No problem, and thanks for looking into it.
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue23939>
___
_
Changes by Ned Deily :
--
status: pending -> closed
___
Python tracker
<http://bugs.python.org/issue23940>
___
___
Python-bugs-list mailing list
Unsubscrib
Ned Deily added the comment:
Done. Thanks for the patch!
--
resolution: -> fixed
stage: commit review -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.or
Ned Deily added the comment:
For what it's worth, the resolution of Issue23476 uses an API that was added in
OpenSSL 1.0.2.
--
___
Python tracker
<http://bugs.python.org/is
Ned Deily added the comment:
Done. Thanks for the patch, Heather. (By the way, if you plan to contribute
more changes, please sign the PSF Contributor Form as described here:
https://docs.python.org/devguide/coredev.html#sign-a-contributor-agreement)
--
nosy: +ned.deily
resolution
Ned Deily added the comment:
I don't have a really strong feeling one way or the other. It's not a big
issue for the OS X installers as this only affects the much-less-used
32-bit-only installer for old systems. So this is really primarily an issue
affecting the Windows installers
Changes by Ned Deily :
--
nosy: +twouters
___
Python tracker
<http://bugs.python.org/issue4254>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
The wording of the patch looks good to me other than one issue: which hook to
use. I notice Nick's suggestion is to use the hg "commit" hook. But in the
comments for the checkwhitespace hook itself, "pretxncommit" is the suggested
hook
Changes by Ned Deily :
--
nosy: +willingc
___
Python tracker
<http://bugs.python.org/issue13472>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
Thanks for investigating this, Kasia. It appears that this problem was fixed
some time ago in the changes associated with Issue5201.
--
nosy: +ned.deily
resolution: -> duplicate
stage: test needed -> resolved
status: open -> closed
superseder:
Changes by Ned Deily :
--
stage: needs patch -> patch review
___
Python tracker
<http://bugs.python.org/issue19543>
___
___
Python-bugs-list mailing list
Un
Changes by Ned Deily :
--
stage: test needed -> patch review
___
Python tracker
<http://bugs.python.org/issue3353>
___
___
Python-bugs-list mailing list
Un
Changes by Ned Deily :
--
nosy: +bquinlan
stage: -> patch review
___
Python tracker
<http://bugs.python.org/issue23962>
___
___
Python-bugs-list mai
Ned Deily added the comment:
Thanks for the patch, Carol. (I made a few minor changes before committing: to
the file paths and to make it clearer that one should choose one of the hooks.)
--
resolution: -> fixed
stage: patch review -> resolved
status: open -&g
Changes by Ned Deily :
--
assignee: -> ned.deily
components: +Build, Macintosh
stage: -> needs patch
versions: +Python 3.5
___
Python tracker
<http://bugs.python.org/i
Ned Deily added the comment:
"what about iOS? isn't __APPLE__ there defined too?"
It is but we currently don't have any iOS-specific checks snywhere in CPython.
I have an additional patch to handle iOS here but I didn't want to break builds
until adding full s
Ned Deily added the comment:
> Antoine's ticket is the first in two decades to request being
> able to install .so extension files side-by-side, so even if
> times and platforms change, people don't seem to have a big
> issues without this feature.
That's exactly wh
Ned Deily added the comment:
> No, PEP 3149 is about the Python ABI, following PEP 3147,
> which implements this for PYC files.
> The intent is to be able to have mutliple *Python* ABI/API versions
> installed side-by-side, not multiple platform ABI versions :-)
Well, for a
Changes by Ned Deily :
--
nosy: +steve.dower, zach.ware
___
Python tracker
<http://bugs.python.org/issue5497>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +gpolo, serhiy.storchaka
type: crash ->
___
Python tracker
<http://bugs.python.org/issue23978>
___
___
Python-bugs-list mai
Changes by Ned Deily :
--
components: +Windows
nosy: +steve.dower, tim.golden, zach.ware
___
Python tracker
<http://bugs.python.org/issue23982>
___
___
Python-bug
Changes by Ned Deily :
--
nosy: +twouters
___
Python tracker
<http://bugs.python.org/issue23983>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +rhettinger
versions: +Python 2.7 -Python 3.2, Python 3.3, Python 3.6
___
Python tracker
<http://bugs.python.org/issue23
Changes by Ned Deily :
--
nosy: +alanmcintyre, serhiy.storchaka, twouters
___
Python tracker
<http://bugs.python.org/issue18262>
___
___
Python-bugs-list mailin
Changes by Ned Deily :
--
stage: needs patch -> patch review
versions: +Python 3.4, Python 3.5
___
Python tracker
<http://bugs.python.org/issue18262>
___
___
Py
Ned Deily added the comment:
Reproduced with top of trunk default branch on OS X (so, not Windows-specific).
With debug enabled:
$ ./bin/python3.5 /tmp/b/bytearray_bug.py
buf2: 13 5 bytearray(b'1234567890123')
buf1: 13 3 bytearray(b'1234567890123')
buf2: 21 2 bytearray(b
Ned Deily added the comment:
Above was in 64-bit mode (x86_64). Same run in 32-bit (i386):
$ ./bin/python3.5-32 /tmp/b/bytearray_bug.py
buf2: 13 2 bytearray(b'1234567890123')
buf1: 13 11 bytearray(b'1234567890123')
buf2: 24 16 bytearray(b'345678901231234567890123
Ned Deily added the comment:
Current source releases of Python do not specify which version of Tk they
should be run with; that is largely up to the distributors of Python (including
python.org binary installers for Windows and OS X) and the conventions of the
platform the instances are
Changes by Ned Deily :
--
nosy: +davin, sbt
___
Python tracker
<http://bugs.python.org/issue23992>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
(... and is documented in The Python 3 and 2 Language Reference manuals:
https://docs.python.org/3/reference/lexical_analysis.html#keywords and
https://docs.python.org/2/reference/lexical_analysis.html#keywords)
--
nosy: +ned.deily
Ned Deily added the comment:
I am im favor of adding documentation for the existing tkinter TclVerion and
TkVersion attributes to the tkinter section of the Standard Library reference
as well as documenting a form of tkinter.Tcl().call('info', 'patchlevel')
and/or tki
Changes by Ned Deily :
--
nosy: +hyeshik.chang, lemburg
___
Python tracker
<http://bugs.python.org/issue24041>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +lemburg, loewis
___
Python tracker
<http://bugs.python.org/issue24043>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
The documentation does not explicitly state whether or not dict_type values
have to be instances / subclasses of dict. Can you give a code example,
preferably something that could be added to Lib/test/test_plistlib.py, of a use
case for something that is not a
Ned Deily added the comment:
Sorry, I don't understand your suggested (4). If someone cares to provide a
suggested patch (with appropriate tests), we could review it. Otherwise, I
would be inclined to close this issue as not an issue. Ronald, any op
Changes by Ned Deily :
--
nosy: +vinay.sajip
___
Python tracker
<http://bugs.python.org/issue24060>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +benjamin.peterson
___
Python tracker
<http://bugs.python.org/issue24061>
___
___
Python-bugs-list mailing list
Unsubscribe:
Ned Deily added the comment:
Dan, this issue was closed and the code associated with it released a few years
ago. Comments here will likely be ignored. If you want to pursue your
suggestion, please open a new issue for it.
--
nosy: +ned.deily
Ned Deily added the comment:
Kirill, the patch is missing.
--
nosy: +ned.deily
___
Python tracker
<http://bugs.python.org/issue24066>
___
___
Python-bugs-list m
Changes by Ned Deily :
--
nosy: +fdrake, pitrou
___
Python tracker
<http://bugs.python.org/issue24067>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +rbcollins
___
Python tracker
<http://bugs.python.org/issue17908>
___
___
Python-bugs-list mailing list
Unsubscribe:
Changes by Ned Deily :
--
nosy: +barry, r.david.murray -ned.deily
stage: -> patch review
versions: +Python 3.5
___
Python tracker
<http://bugs.python.org/issu
Ned Deily added the comment:
While a bit confusing, I don't think this is a bug. Note the definition of the
"tail" attribute of an element:
"If the element is created from an XML file the attribute will contain any text
found after the element’s end tag and before the n
Ned Deily added the comment:
I think the issue here is that you are expecting the "mode" attribute of a file
object (or io.* object in Py3) to reflect the "readable" and "writeable" access
mode of the underlying file descriptor (for POSIX-like systems). But, as n
Changes by Ned Deily :
--
assignee: -> docs@python
components: +Documentation -Interpreter Core
nosy: +docs@python
stage: -> needs patch
___
Python tracker
<http://bugs.python.org/i
Ned Deily added the comment:
Thanks for the report, John!
--
nosy: +ned.deily
resolution: -> fixed
stage: needs patch -> resolved
status: open -> closed
___
Python tracker
<http://bugs.python.or
Ned Deily added the comment:
(This issue is a followup to your Issue24072.) Again, while the ElementTree
documentation is certainly not nearly as complete as it should be, I don't
think this is a documentation error per se. The key issue is: with which
element is each text string assoc
6601 - 6700 of 6927 matches
Mail list logo