python / cpython

The Python programming language
https://www.python.org
Other
63.2k stars 30.26k forks source link

curses crash on FreeBSD #51633

Closed mdickinson closed 14 years ago

mdickinson commented 14 years ago
BPO 7384
Nosy @akuchling, @mdickinson, @vstinner, @ashemedai, @bitdancer, @skrah
Files
  • freebsd-curses.diff: Possible fix
  • issue7384.patch
  • issue7384-2.patch
  • issue7384-3-py3k.patch
  • issue7384-4-py3k.patch
  • issue7384-5-py3k.patch
  • issue7384-5-trunk.patch
  • ldd-retval-py3k.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields: ```python assignee = None closed_at = created_at = labels = ['extension-modules', 'type-bug'] title = 'curses crash on FreeBSD' updated_at = user = 'https://github.com/mdickinson' ``` bugs.python.org fields: ```python activity = actor = 'skrah' assignee = 'none' closed = True closed_date = closer = 'skrah' components = ['Extension Modules'] creation = creator = 'mark.dickinson' dependencies = [] files = ['16935', '16963', '16973', '17023', '17050', '17064', '17528', '17997'] hgrepos = [] issue_num = 7384 keywords = ['patch', 'buildbot'] message_count = 52.0 messages = ['95652', '97709', '97722', '99657', '99658', '99659', '103231', '103256', '103261', '103263', '103264', '103265', '103267', '103295', '103307', '103308', '103393', '103394', '103395', '103429', '103432', '103497', '103503', '103828', '103838', '103980', '103996', '103997', '104000', '104002', '104054', '104057', '104070', '104071', '104074', '104283', '104302', '104311', '104315', '106199', '106939', '106940', '106948', '107323', '107999', '110222', '110224', '110225', '110238', '110271', '110378', '110550'] nosy_count = 8.0 nosy_names = ['akuchling', 'mark.dickinson', 'vstinner', 'asmodai', 'rpetrov', 'Arfrever', 'r.david.murray', 'skrah'] pr_nums = [] priority = 'normal' resolution = 'accepted' stage = 'resolved' status = 'closed' superseder = None type = 'behavior' url = 'https://bugs.python.org/issue7384' versions = ['Python 2.6', 'Python 3.1', 'Python 2.7', 'Python 3.2'] ```

    80036ac5-bb84-4d39-8416-02cd8e51707d commented 14 years ago

    This patch allows to build Python 3.* in this locale.

    It might be safer to open tmpfile in binary mode to avoid potential problems with non-ASCII characters in paths to libraries.

    5531d0d8-2a9c-46ba-8b8b-ef76132a492c commented 14 years ago

    ldd return value check committed in r82927, r82928, r82929 and r82930.

    Thanks for reporting this!