[issue18248] fficonfig.py.in wrong for AIX

2013-06-17 Thread David Edelsohn
New submission from David Edelsohn: fficonfig.py.in incorrectly mixes source files intended for Linux with source files intended for AIX, causing a build failure. AIX uses ffi_darwin.c not ffi.c diff -r f6f70f1ab124 Modules/_ctypes/libffi.diff --- a/Modules/_ctypes/libffi.diff Mon Jun 17

[issue18248] fficonfig.py.in wrong for AIX

2013-06-17 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue18249] Incorrect and incomplete help docs for close() method

2013-06-17 Thread Dave Angel
New submission from Dave Angel: Python 3.3.0 (default, Mar 7 2013, 00:24:38) [GCC 4.6.3] on linux q = open('/dev/null') help(q.close) the entire output is: --- Help on built-in function close: close(...) (END) --- But close() is NOT a

[issue18249] Incorrect and incomplete help docs for close() method

2013-06-17 Thread Christian Heimes
Christian Heimes added the comment: In fact it is a built-in method without a doc string: >>> f = open("/dev/null") >>> f.close >>> f.close.__doc__ All functions and methods that are implemented in C are referred to as built-in functions. It's an implementation detail. -- nosy: +chri

[issue18250] In itertools.repeat() object shadows object()

2013-06-17 Thread py.user
New submission from py.user: >>> object >>> -- assignee: docs@python components: Documentation files: issue.diff keywords: patch messages: 191384 nosy: docs@python, py.user priority: normal severity: normal status: open title: In itertools.repeat() object shadows object() type: enhancem

[issue18235] _sysconfigdata.py wrong on AIX installations

2013-06-17 Thread David Edelsohn
David Edelsohn added the comment: This is the cause of the failures in test_distutils. -- ___ Python tracker ___ ___ Python-bugs-list

[issue18162] Add index attribute to IndexError

2013-06-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: -1 on expanding the API for an attribute that is sometimes there and sometimes not. This doesn't add any value, but it does add complication. -- ___ Python tracker ___

[issue18103] Create a GUI test framework for Idle

2013-06-17 Thread Phil Webster
Changes by Phil Webster : -- nosy: +philwebster ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue18189] IDLE Improvements: Unit test for Delegator.py

2013-06-17 Thread R. Jayakrishnan
Changes by R. Jayakrishnan : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue17767] Fix test discovery for test_locale.py

2013-06-17 Thread Zachary Ware
Zachary Ware added the comment: Looking at this one again, I missed removing the run_unittest import. Here's a new patch. -- Added file: http://bugs.python.org/file30631/test_locale_discovery.v2.diff ___ Python tracker

[issue16901] In http.cookiejar.FileCookieJar() the .load() and .revert() methods don't work

2013-06-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue9740] Support for HTTP 1.1 persistent connections throughout the standard library

2013-06-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

<    1   2