[issue25024] Allow passing "delete=False" to TemporaryDirectory

2015-09-07 Thread Antony Lee
New submission from Antony Lee: I would like to suggest allowing passing "delete=False" to the TemporaryDirectory constructor, with the effect that the directory is not deleted when the TemporaryDirectory context manager exits, or when the TemporaryDirectory object is deleted. I realize that

[issue25025] Missing 3.5.0 RC3 tarballs (FTP)

2015-09-07 Thread koobs
New submission from koobs: 3.5.0 rc3 tarballs appear to be missing on: https://www.python.org/ftp/python/3.5.0/ -- messages: 250159 nosy: koobs priority: normal severity: normal status: open title: Missing 3.5.0 RC3 tarballs (FTP) versions: Python 3.5 __

[issue25023] time.strftime('%a'), ValueError: embedded null byte, in ko locale

2015-09-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What is your OS? On Ubuntu: >>> import locale, time >>> locale.setlocale(locale.LC_ALL, 'ko_KR.UTF-8') 'ko_KR.UTF-8' >>> time.strftime('%a') '화' >>> locale.setlocale(locale.LC_ALL, 'ko_KR.eucKR') 'ko_KR.eucKR' >>> time.strftime('%a') '화' >>> locale.setlocale(l

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-07 Thread Zachary Ware
Zachary Ware added the comment: Stefan Krah commented: > The buildbot segfaults all over the place, also in test_tokenize > and test_json: To be fair, other buildbots are also segfaulting (or otherwise silently failing) on those: 3.4 on XP, test_json: http://buildbot.python.org/all/builders/x

[issue24999] Segfault in test_re.test_sre_character_class_literals() when Python is compiled by ICC

2015-09-07 Thread Zachary Ware
Zachary Ware added the comment: Note: the ICC buildbot does fail much more consistently on those. -- ___ Python tracker ___ ___ Python

[issue25026] (FreeBSD/OSX) Fix fcntl module to accept 'unsigned long' type commands for ioctl(2).

2015-09-07 Thread koobs
New submission from koobs: In my current attempt to create a FreeBSD port for python35, I've come across a patch rejection for the fcntlmodule.c for a local port patch we've been carrying since Python 2.6: https://svnweb.freebsd.org/ports/head/lang/python27/files/patch-Modules__fcntlmodule.c?r

<    1   2