[
https://issues.apache.org/jira/browse/PROTON-2319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17261541#comment-17261541
]
ASF GitHub Bot commented on PROTON-2319:
----------------------------------------
astitcher commented on a change in pull request #284:
URL: https://github.com/apache/qpid-proton/pull/284#discussion_r554144869
##########
File path: tests/py/test_unittest.py
##########
@@ -1,83 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License
-#
-
-from __future__ import absolute_import
-from __future__ import division
-from __future__ import print_function
-
-import sys
-
-__all__ = ['unittest']
-
-
-def _monkey_patch():
- """Monkey-patch a few unittest 2.7 features for Python 2.6.
-
- These are not the pretty versions provided by 2.7, but they do the
- same job as far as correctness is concerned.
-
- Only used as a measure of last resort if unittest2 is not available.
- """
- if not hasattr(unittest.TestCase, "assertMultiLineEqual"):
- def assertMultiLineEqual(self, a, b, msg=None): self.assertEqual(a, b,
msg)
-
- unittest.TestCase.assertMultiLineEqual = assertMultiLineEqual
-
- if not hasattr(unittest.TestCase, "assertIn"):
- def assertIn(self, a, b, msg=None): self.assertTrue(a in b, msg)
-
- unittest.TestCase.assertIn = assertIn
-
- if not hasattr(unittest.TestCase, "assertIsNone"):
- def assertIsNone(self, obj, msg=None): self.assertEqual(obj, None, msg)
-
- unittest.TestCase.assertIsNone = assertIsNone
-
- if not hasattr(unittest, "skip"):
- def skip(reason="Test skipped"):
- return lambda f: print(reason)
-
- unittest.skip = skip
-
- if not hasattr(unittest, "skipIf"):
- def skipIf(condition, reason):
- if condition:
- return skip(reason)
- return lambda f: f
-
- unittest.skipIf = skipIf
-
- if not hasattr(unittest, "skipUnless"):
- def skipUnless(condition, reason):
- if not condition:
- return skip(reason)
- return lambda f: f
-
- unittest.skipUnless = skipUnless
-
-
-if sys.version_info >= (2, 7):
- import unittest
-else:
- try:
- import unittest2 as unittest
Review comment:
Ah good point. I'll go look
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> [python] Remove support for python 2.6
> --------------------------------------
>
> Key: PROTON-2319
> URL: https://issues.apache.org/jira/browse/PROTON-2319
> Project: Qpid Proton
> Issue Type: Improvement
> Components: python-binding
> Reporter: Andrew Stitcher
> Assignee: Andrew Stitcher
> Priority: Major
>
> Python 2.6 has been on life support for a long time - it's only present in
> Proton because of RHEL 6 which has now gone out of support. So now is a good
> time to remove the remaining awkward bits of code that only exist to support
> Python 2.6.
> Python 2.7 - you're next!
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]