Commits on Jan 3, 2022
-
bpo-40477: macOS Python Launcher app fixes for recent macOS releases (G…
…H-30348) This change solves two problems encountered by users of the macOS Python Launcher app on recent macOS releases (10.14+): - The launcher app was no longer able to launch the macOS Terminal.app to run a script. - Even if Terminal.app was already launched, the launcher app was unable to send an Apple Event to Terminal.app to open and run Python with the desired .py file.
Commits on Jan 2, 2022
-
Update copyright year to 2022. (GH-30335)
Automerge-Triggered-By: GH:benjaminp
Commits on Oct 6, 2021
Commits on Jun 25, 2020
Commits on May 18, 2020
-
bpo-26317: Support OBJC and OBJCXX configure command line variables (G…
…H-20176) Add support to the configure script for OBJC and OBJCXX command line options so that the macOS builds can use the clang compiler for the macOS-specific Objective C source files. This allows third-party compilers, like GNU gcc, to be used to build the rest of the project since some of the Objective C system header files are not compilable by GNU gcc. Co-authored-by: Jeffrey Kintscher <websurfer@surf2c.net> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Commits on Jan 3, 2020
Commits on Jan 2, 2019
Commits on Jan 5, 2018
Commits on Nov 28, 2017
Commits on Sep 7, 2016
Commits on Jan 1, 2016
Commits on Jan 1, 2015
Commits on Sep 23, 2014
-
Issue #22471: Avoid Python Launcher.app install problems by removing
vestigial Makefile step.
-
Issue #22471: Avoid Python Launcher.app install problems by removing
vestigial Makefile step.
Commits on Mar 30, 2014
Commits on Jan 16, 2014
-
Issue #19936: Remove executable bits from C source files and several …
…forgotten test files.
Commits on Jan 1, 2014
Commits on Jul 7, 2013
-
Issue #18377: Code cleanup in Python Launcher
This changeset fixes a number of compiler warnings in the Python Launcher binary for OSX. It also cleans up whitespace usage in those sources.
Commits on Jul 6, 2013
-
Issue #12990: The "Python Launcher" on OSX could not launch python sc…
…ripts that have paths that include wide characters.
Commits on Jan 1, 2013
Commits on Jan 1, 2012
Commits on Jan 6, 2011
Commits on Apr 30, 2010
-
Merged revisions 80647 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r80647 | ronald.oussoren | 2010-04-30 13:20:14 +0200 (Fri, 30 Apr 2010) | 11 lines Fix for issue #3646: with this patch it is possible to do a framework install of Python in your home directory (on OSX): $ configure --enable-framework=${HOME}/Library/Frameworks $ make && make install Without this patch the framework would get installed just fine, but 'make install' would try to install the application bundles and command-line tools outside the user's home, which doesn't work for non-admin users (and is bad form anyway). ........
Commits on Apr 20, 2010
-
* Fixes cut&paste error in configure
* Ensure that framework install works given the recent CFLAGS and BASECFLAGS changes
Commits on Jun 3, 2009
-
Remove the application stub for Python Launcher. This
directory structure isn't used during the build and causes problems when you do build without a separate build directory. Fixes issue 5267
Commits on Mar 30, 2009
-
Merged revisions 70735 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70735 | ronald.oussoren | 2009-03-30 14:22:56 -0500 (Mon, 30 Mar 2009) | 3 lines Remove usage of the deprecated '-cString' and '+stringWithCString:' API's in PythonLauncher, replacing them with the correct counterparts. ........
Commits on Jan 2, 2009
Commits on Dec 30, 2008
-
Make it possible to install a framework build of Python 3.x on OSX.
This the build machinery on OSX to re-enable building (and installing) PythonLauncher.app and IDLE.app. This needs ports of fixes to Lib/distutils/util.py and Include/pymacconfig.h to be fully functiontional, to be fully functional. I also have a patch for Makefile.pre.in that I'll post on bugs.python.org for review.