This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo in findertools.py
Type: Stage: resolved
Components: macOS Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ned.deily Nosy List: karstenw, ned.deily, python-dev, ronaldoussoren
Priority: normal Keywords:

Created on 2011-09-08 09:32 by karstenw, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg143722 - (view) Author: Karsten Wolf (karstenw) Date: 2011-09-08 09:32
In the current Python-2.7.2.tar.bz2 archive ./Lib/plat-mac/findertools.py in function comment on line 131 the call to FSNewAliasMinimal is misstyped.

current version:
    object_alias = object.FSNewAliasMonimal()

corrected version

    object_alias = object.FSNewAliasMinimal()
msg144104 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2011-09-15 21:08
New changeset b5f4c4085ae6 by Ned Deily in branch '2.7':
Issue #12935: Correct typo in findertools.
http://hg.python.org/cpython/rev/b5f4c4085ae6
msg144105 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2011-09-15 21:12
Thanks for the report.  Fixed, although findertools is woefully obsolete and no longer exists in Python 3.  For working with the Finder in current OS X releases, use appscript instead (http://pypi.python.org/pypi/appscript/).
History
Date User Action Args
2022-04-11 14:57:21adminsetgithub: 57144
2011-09-15 21:12:24ned.deilysetstatus: open -> closed

assignee: ronaldoussoren -> ned.deily

nosy: + ned.deily
messages: + msg144105
resolution: fixed
stage: resolved
2011-09-15 21:08:15python-devsetnosy: + python-dev
messages: + msg144104
2011-09-08 09:32:24karstenwcreate