diff options
author | Ned Deily <nad@acm.org> | 2011-06-28 07:00:28 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-06-28 07:00:28 (GMT) |
commit | 3eb67d58d61cec42c09242a7d801072c3e448dcf (patch) | |
tree | 821fab0f068bbbd184ac8abec600a9cb3eaf16fc /Misc | |
parent | 11f00f3b00a0667c41509318f49f0da75ab5c977 (diff) | |
download | cpython-3eb67d58d61cec42c09242a7d801072c3e448dcf.zip cpython-3eb67d58d61cec42c09242a7d801072c3e448dcf.tar.gz cpython-3eb67d58d61cec42c09242a7d801072c3e448dcf.tar.bz2 |
Issue #8746: Correct faulty configure checks so that os.chflags() and
os.lchflags() are once again built on systems that support these
functions (*BSD and OS X). Also add new stat file flags for OS X
(UF_HIDDEN and UF_COMPRESSED). Also add additional tests for
os.chflags() and os.lchflags(). (Tests by Garrett Cooper)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 8 |
2 files changed, 9 insertions, 0 deletions
@@ -181,6 +181,7 @@ Juan José Conti Matt Conway David M. Cooke Jason R. Coombs +Garrett Cooper Greg Copeland Aldo Cortesi David Costanzo @@ -99,6 +99,11 @@ Extension Modules Build ----- +- Issue #8746: Correct faulty configure checks so that os.chflags() and + os.lchflags() are once again built on systems that support these + functions (*BSD and OS X). Also add new stat file flags for OS X + (UF_HIDDEN and UF_COMPRESSED). + - Issue #11217: For 64-bit/32-bit Mac OS X universal framework builds, ensure "make install" creates symlinks in --prefix bin for the "-32" files in the framework bin directory like the installer does. @@ -106,6 +111,9 @@ Build Tests ----- +- Issue #8746: Add additional tests for os.chflags() and os.lchflags(). + Patch by Garrett Cooper. + - Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9 on Mac OS X. (Patch by Ronald Oussoren) |