[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 327896bf3152 by Serhiy Storchaka in branch '2.7': Issue #16792: Use assertIs() to test identity. http://hg.python.org/cpython/rev/327896bf3152 -- ___ Python tracker __

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Indeed. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: You can use assertIs() in 2.7 as well, no? +@test_support.cpython_only +def test_small_ints(self): +self.assertTrue(int('10') is 10) -- ___ Python tracker

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f82e9992ad9 by Serhiy Storchaka in branch '2.7': Issue #16792: Mark small ints test as CPython-only. http://hg.python.org/cpython/rev/8f82e9992ad9 New changeset 31955234b624 by Serhiy Storchaka in branch '3.2': Issue #16792: Mark small ints test as

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Chris Jerdonek
Changes by Chris Jerdonek : -- nosy: +chris.jerdonek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Mark Dickinson
Mark Dickinson added the comment: LGTM. -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file28456/int_test_small_ints-2.7.patch ___ Python tracker ___ ___ Python-bug

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file28455/int_test_small_ints-3.2.patch ___ Python tracker ___ ___ Python-bug

[issue16792] Mark small ints test as CPython-only

2012-12-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Small ints test should be extracted to a separate method and marked as CPython only. In additional it backported to 2.7. -- assignee: serhiy.storchaka components: Tests files: int_test_small_ints-3.3.patch keywords: patch messages: 178300 nosy: serh