Issue1134

classification
Title: Built-in functions should be of type types.BuiltinFunction
Type: behaviour Severity: normal
Components: Core Versions: 2.5alpha1
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ericjacobs, zyasoft
Priority: Keywords:

Created on 2008-09-20.16:33:13 by ericjacobs, last changed 2008-10-11.03:52:07 by zyasoft.

Files
File name Uploaded Description Edit Remove
set_builtin_function_types.patch ericjacobs, 2008-09-20.16:33:13
Messages
msg3609 (view) Author: Eric Jacobs (ericjacobs) Date: 2008-09-20.16:33:12
Some built-in functions are getting a type assigned based on their java
implementation. However, Python expects all built-in functions have the
same type.

fixing this resolves the "max" failures in test_copy.

>>> type(max)
<type 'builtin_function_or_method'>
msg3655 (view) Author: Jim Baker (zyasoft) Date: 2008-10-11.03:52:07
This is a nice alternative solution to r5369, which went with a
singleton approach.
History
Date User Action Args
2008-10-11 03:52:07zyasoftsetstatus: open -> closed
resolution: fixed
messages: + msg3655
nosy: + zyasoft
2008-09-20 16:33:13ericjacobscreate