[issue3827] memoryview.size is redundant

2008-09-10 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: This causes test_ctypes to fail. r66382 corrects the test to use len(v) instead of v.size -- nosy: +amaury.forgeotdarc ___ Python tracker <[EMAIL PROTECTED]>

[issue3827] memoryview.size is redundant

2008-09-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Fixed in r66374. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3827] memoryview.size is redundant

2008-09-09 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: Since this is a 3.0 thing I am dropping it down to a deferred blocker. -- nosy: +brett.cannon priority: release blocker -> deferred blocker ___ Python tracker <[EMAIL PROTECTED]>

[issue3827] memoryview.size is redundant

2008-09-09 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: The patch is ok to me. -- nosy: +pitrou ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3827] memoryview.size is redundant

2008-09-09 Thread Antoine Pitrou
Changes by Antoine Pitrou <[EMAIL PROTECTED]>: -- nosy: +teoliphant ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mail

[issue3827] memoryview.size is redundant

2008-09-09 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- keywords: +needs review, patch Added file: http://bugs.python.org/file11450/remove_size_attr.patch ___ Python tracker <[EMAIL PROTECTED]> _

[issue3827] memoryview.size is redundant

2008-09-09 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: memoryview.size will always be the same as len(view), so one or the other should go. (probably .size) -- components: Interpreter Core messages: 72929 nosy: benjamin.peterson priority: release blocker severity: normal status: open