René's URL Explorer Experiment


Title: BuiltinTest.test_pow fails with Python-3.8 · Issue #474 · PythonCharmers/python-future · GitHub

Open Graph Title: BuiltinTest.test_pow fails with Python-3.8 · Issue #474 · PythonCharmers/python-future

X Title: BuiltinTest.test_pow fails with Python-3.8 · Issue #474 · PythonCharmers/python-future

Description: Hi all. This the output of a failed test (future c423752) with Python-3.8.0b1: =================================== FAILURES =================================== _____________________________ BuiltinTest.test_pow __________________________...

Open Graph Description: Hi all. This the output of a failed test (future c423752) with Python-3.8.0b1: =================================== FAILURES =================================== _____________________________ Builtin...

X Description: Hi all. This the output of a failed test (future c423752) with Python-3.8.0b1: =================================== FAILURES =================================== _____________________________ Builtin...

Opengraph URL: https://github.com/PythonCharmers/python-future/issues/474

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"BuiltinTest.test_pow fails with Python-3.8","articleBody":"Hi all.\r\n\r\nThis the output of a failed test (future c423752879acc05eebc29b0bb9909327bd5c7308) with `Python-3.8.0b1`:\r\n\r\n```\r\n=================================== FAILURES ===================================\r\n_____________________________ BuiltinTest.test_pow _____________________________\r\n\r\nself = \u003ctest_future.test_builtins.BuiltinTest testMethod=test_pow\u003e\r\n\r\n    def test_pow(self):\r\n        self.assertEqual(pow(0,0), 1)\r\n        self.assertEqual(pow(0,1), 0)\r\n        self.assertEqual(pow(1,0), 1)\r\n        self.assertEqual(pow(1,1), 1)\r\n    \r\n        self.assertEqual(pow(2,0), 1)\r\n        self.assertEqual(pow(2,10), 1024)\r\n        self.assertEqual(pow(2,20), 1024*1024)\r\n        self.assertEqual(pow(2,30), 1024*1024*1024)\r\n    \r\n        self.assertEqual(pow(-2,0), 1)\r\n        self.assertEqual(pow(-2,1), -2)\r\n        self.assertEqual(pow(-2,2), 4)\r\n        self.assertEqual(pow(-2,3), -8)\r\n    \r\n        self.assertAlmostEqual(pow(0.,0), 1.)\r\n        self.assertAlmostEqual(pow(0.,1), 0.)\r\n        self.assertAlmostEqual(pow(1.,0), 1.)\r\n        self.assertAlmostEqual(pow(1.,1), 1.)\r\n    \r\n        self.assertAlmostEqual(pow(2.,0), 1.)\r\n        self.assertAlmostEqual(pow(2.,10), 1024.)\r\n        self.assertAlmostEqual(pow(2.,20), 1024.*1024.)\r\n        self.assertAlmostEqual(pow(2.,30), 1024.*1024.*1024.)\r\n    \r\n        self.assertAlmostEqual(pow(-2.,0), 1.)\r\n        self.assertAlmostEqual(pow(-2.,1), -2.)\r\n        self.assertAlmostEqual(pow(-2.,2), 4.)\r\n        self.assertAlmostEqual(pow(-2.,3), -8.)\r\n    \r\n        for x in 2, int(2), 2.0:\r\n            for y in 10, int(10), 10.0:\r\n                for z in 1000, int(1000), 1000.0:\r\n                    if isinstance(x, float) or \\\r\n                       isinstance(y, float) or \\\r\n                       isinstance(z, float):\r\n                        self.assertRaises(TypeError, pow, x, y, z)\r\n                    else:\r\n                        self.assertAlmostEqual(pow(x, y, z), 24.0)\r\n    \r\n        self.assertAlmostEqual(pow(-1, 0.5), 1j)\r\n        self.assertAlmostEqual(pow(-1, 1/3), 0.5 + 0.8660254037844386j)\r\n    \r\n        # Raises TypeError in Python \u003c v3.5, ValueError in v3.5:\r\n\u003e       self.assertRaises((TypeError, ValueError), pow, -1, -2, 3)\r\nE       AssertionError: (\u003cclass 'TypeError'\u003e, \u003cclass 'ValueError'\u003e) not raised by pow\r\n\r\ntests/test_future/test_builtins.py:1289: AssertionError\r\n=============================== warnings summary ===============================\r\ntests/test_future/test_backports.py:13\r\ntests/test_future/test_backports.py:13\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_backports.py:13: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working\r\n    from collections import Mapping, MutableMapping\r\n\r\ntests/test_future/test_builtins.py:267\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_builtins.py:267: SyntaxWarning: invalid escape sequence \\u\r\n    (str(b'\\u0663\\u0661\\u0664 ','raw-unicode-escape'), 314),\r\n\r\ntests/test_future/test_builtins.py:289\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_builtins.py:289: SyntaxWarning: invalid escape sequence \\u\r\n    (str(b'\\u0663\\u0661\\u0664 ','raw-unicode-escape'), 314),\r\n\r\nbuild/lib/future/backports/test/support.py:1977\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/test/support.py:1977: SyntaxWarning: invalid escape sequence \\d\r\n    m = re.match(\"2.6.(\\d{1,2})\", kernel_version)\r\n\r\nbuild/lib/future/backports/email/utils.py:68\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/email/utils.py:68: SyntaxWarning: invalid escape sequence \\A\r\n    '([^\\ud800-\\udbff]|\\A)[\\udc00-\\udfff]([^\\udc00-\\udfff]|\\Z)').search\r\n\r\nbuild/lib/future/backports/urllib/parse.py:957\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/urllib/parse.py:957: SyntaxWarning: invalid escape sequence \\?\r\n    _queryprog = re.compile('^(.*)\\?([^?]*)$')\r\n\r\ntests/test_future/test_htmlparser.py:685\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_htmlparser.py:685: SyntaxWarning: invalid escape sequence \\=\r\n    \"\u003ca $\u003e\u003cb $=%\u003e\u003cc \\=/\u003e\",\r\n\r\nbuild/lib/future/backports/html/parser.py:31\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/html/parser.py:31: SyntaxWarning: invalid escape sequence \\s\r\n    tagfind = re.compile('([a-zA-Z][-.a-zA-Z0-9:_]*)(?:\\s|/(?!\u003e))*')\r\n\r\nbuild/lib/future/backports/html/parser.py:79\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/html/parser.py:79: SyntaxWarning: invalid escape sequence \\s\r\n    endtagfind = re.compile('\u003c/\\s*([a-zA-Z][-.a-zA-Z0-9:_]*)\\s*\u003e')\r\n\r\ntests/test_future/test_http_cookiejar.py:1034\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_http_cookiejar.py:1034: SyntaxWarning: invalid escape sequence \\$\r\n    self.assertRegex(h, \"\\$Port([^=]|$)\",\r\n\r\ntests/test_future/test_http_cookiejar.py:1373\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_http_cookiejar.py:1373: SyntaxWarning: invalid escape sequence \\s\r\n    '\\s*\\$Path=\"\\/acme\"')\r\n\r\ntests/test_future/test_http_cookiejar.py:1375\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_http_cookiejar.py:1375: SyntaxWarning: invalid escape sequence \\s\r\n    '\\s*\\$Path=\"\\/acme\"')\r\n\r\nbuild/lib/future/backports/http/client.py:1\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/http/client.py:1: SyntaxWarning: invalid escape sequence \\_\r\n    \"\"\"HTTP/1.1 client library\r\n\r\nbuild/lib/future/backports/email/feedparser.py:37\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/email/feedparser.py:37: SyntaxWarning: invalid escape sequence \\Z\r\n    NLCRE_eol = re.compile('(\\r\\n|\\r|\\n)\\Z')\r\n\r\nbuild/lib/future/backports/http/cookiejar.py:212\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/http/cookiejar.py:212: SyntaxWarning: invalid escape sequence \\d\r\n    \"(\\d\\d\\d\\d) (\\d\\d):(\\d\\d):(\\d\\d) GMT$\", re.ASCII)\r\n\r\nbuild/lib/future/backports/http/cookiejar.py:289\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/http/cookiejar.py:289: SyntaxWarning: invalid escape sequence \\d\r\n    \"\"\"^\r\n\r\nbuild/lib/future/backports/http/cookiejar.py:423\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/http/cookiejar.py:423: SyntaxWarning: invalid escape sequence \\s\r\n    non_junk, nr_junk_chars = re.subn(\"^[=\\s;]*\", \"\", text)\r\n\r\ntests/test_future/test_range.py:9\r\ntests/test_future/test_range.py:9\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_range.py:9: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working\r\n    from collections import Iterator, Sequence\r\n\r\ntests/test_future/test_urllib.py:536\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib.py:536: SyntaxWarning: invalid escape sequence \\^\r\n    \"\"\"Tests for urllib.quote() and urllib.quote_plus()\r\n\r\ntests/test_future/test_urllib.py:611\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib.py:611: SyntaxWarning: invalid escape sequence \\^\r\n    should_quote.append('\u003c\u003e#%\"{}|\\^[]`')\r\n\r\ntests/test_future/test_urllib_response.py:11\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_response.py:11: PytestWarning: cannot collect test class 'TestFile' because it has a __init__ constructor\r\n    class TestFile(object):\r\n\r\ntests/test_future/test_urllib_toplevel.py:551\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:551: SyntaxWarning: invalid escape sequence \\^\r\n    \"\"\"Tests for urllib.quote() and urllib.quote_plus()\r\n\r\ntests/test_future/test_urllib_toplevel.py:626\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:626: SyntaxWarning: invalid escape sequence \\^\r\n    should_quote.append('\u003c\u003e#%\"{}|\\^[]`')\r\n\r\nbuild/lib/past/types/oldstr.py:18\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/past/types/oldstr.py:18: SyntaxWarning: invalid escape sequence \\d\r\n    \"\"\"\r\n\r\nbuild/lib/past/builtins/misc.py:79\r\ntests/test_past/test_builtins.py::BuiltinTest::test_execfile\r\ntests/test_past/test_builtins.py::BuiltinTest::test_execfile\r\ntests/test_past/test_builtins.py::BuiltinTest::test_execfile\r\ntests/test_past/test_builtins.py::BuiltinTest::test_execfile\r\ntests/test_past/test_builtins.py::BuiltinTest::test_execfile\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/past/builtins/misc.py:79: DeprecationWarning: 'U' mode is deprecated\r\n    with open(filename, \"rbU\") as fin:\r\n\r\ntests/test_future/test_bytes.py::TestBytes::test_multiple_inheritance\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_bytes.py:709: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working\r\n    class Foo(Base, collections.Container):\r\n\r\ntests/test_future/test_int.py::IntTestCases::test_intconversion\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_int.py:360: DeprecationWarning: __int__ returned non-int (type Foo3).  The ability to return an instance of a strict subclass of int is deprecated, and may be removed in a future version of Python.\r\n    self.assertEqual(int(Foo3()), 0)\r\n\r\ntests/test_future/test_range.py::RangeTests::test_slice_zero_step\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_range.py:195: DeprecationWarning: Please use assertRaisesRegex instead.\r\n    with self.assertRaisesRegexp(ValueError, msg):\r\n\r\ntests/test_future/test_standard_library.py::TestStandardLibraryReorganization::test_reload\r\n  /usr/lib64/python3.8/importlib/__init__.py:169: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses\r\n    _bootstrap._exec(spec, module)\r\n\r\ntests/test_future/test_urllib2.py::HandlerTests::test_http\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/future/backports/urllib/request.py:1224: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3,and in 3.9 it will stop working\r\n    if isinstance(data, collections.Iterable):\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1208: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'ab'),urllib_parse.splitpasswd('user:ab'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1209: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a\\nb'),urllib_parse.splitpasswd('user:a\\nb'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1210: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a\\tb'),urllib_parse.splitpasswd('user:a\\tb'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1211: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a\\rb'),urllib_parse.splitpasswd('user:a\\rb'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1212: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a\\fb'),urllib_parse.splitpasswd('user:a\\fb'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1213: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a\\vb'),urllib_parse.splitpasswd('user:a\\vb'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1214: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a:b'),urllib_parse.splitpasswd('user:a:b'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1215: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user', 'a b'),urllib_parse.splitpasswd('user:a b'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1216: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user 2', 'ab'),urllib_parse.splitpasswd('user 2:ab'))\r\n\r\ntests/test_future/test_urllib_toplevel.py::Utility_Tests::test_splitpasswd\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllib_toplevel.py:1217: DeprecationWarning: urllib.parse.splitpasswd() is deprecated as of 3.8, use urllib.parse.urlparse() instead\r\n    self.assertEqual(('user+1', 'a+b'),urllib_parse.splitpasswd('user+1:a+b'))\r\n\r\ntests/test_future/test_urllibnet.py::urlopenNetworkTests::test_getcode\r\ntests/test_future/test_urllibnet.py::test_main\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/tests/test_future/test_urllibnet.py:103: DeprecationWarning: FancyURLopener style of invoking requests is deprecated. Use newer urlopen functions/methods\r\n    open_url = urllib_request.FancyURLopener().open(URL)\r\n\r\ntests/test_past/test_oldstr.py::TestOldStr::test_unescape\r\n  /builddir/build/BUILD/python-future-c423752879acc05eebc29b0bb9909327bd5c7308/python3/build/lib/past/types/oldstr.py:32: DeprecationWarning: invalid escape sequence '\\c'\r\n    return s.encode().decode('unicode_escape')\r\n\r\n-- Docs: https://docs.pytest.org/en/latest/warnings.html\r\n= 1 failed, 1004 passed, 53 skipped, 47 xfailed, 50 warnings in 30.28 seconds ==\r\n```","author":{"url":"https://github.com/sagitter","@type":"Person","name":"sagitter"},"datePublished":"2019-06-06T11:02:31.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/474/python-future/issues/474"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:8ab6f9b0-2a39-4d9d-e51b-d907963486b8
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA6EE:E0123:66665C:89D711:6A5A7C9F
html-safe-noncedc6ab900ed00c5e54282d1861504d24083781f5b3134cf60d946b1964925d754
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNkVFOkUwMTIzOjY2NjY1Qzo4OUQ3MTE6NkE1QTdDOUYiLCJ2aXNpdG9yX2lkIjoiODA2MTAyNTc3ODA1Njk4NTc1OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaccf361cb9349154cde3157b383a75cd373274e5927eb3487674a7b12d9fe01229
hovercard-subject-tagissue:452967753
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/PythonCharmers/python-future/474/issue_layout
twitter:imagehttps://opengraph.githubassets.com/7aeb9db8624b4055cd8dca756c39f1043f493fa45ea552d3a63e4dca0cba4f77/PythonCharmers/python-future/issues/474
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/7aeb9db8624b4055cd8dca756c39f1043f493fa45ea552d3a63e4dca0cba4f77/PythonCharmers/python-future/issues/474
og:image:altHi all. This the output of a failed test (future c423752) with Python-3.8.0b1: =================================== FAILURES =================================== _____________________________ Builtin...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamesagitter
hostnamegithub.com
expected-hostnamegithub.com
None922bdba685ea48400234d557977f0e32d9adbae6f5125725b4f48cacc6801106
turbo-cache-controlno-preview
go-importgithub.com/PythonCharmers/python-future git https://github.com/PythonCharmers/python-future.git
octolytics-dimension-user_id3365815
octolytics-dimension-user_loginPythonCharmers
octolytics-dimension-repository_id11403699
octolytics-dimension-repository_nwoPythonCharmers/python-future
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id11403699
octolytics-dimension-repository_network_root_nwoPythonCharmers/python-future
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release0437efb828a4041956ce45d1f7fe69fff38926c7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/PythonCharmers/python-future/issues/474#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPythonCharmers%2Fpython-future%2Fissues%2F474
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FPythonCharmers%2Fpython-future%2Fissues%2F474
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=PythonCharmers%2Fpython-future
Reloadhttps://github.com/PythonCharmers/python-future/issues/474
Reloadhttps://github.com/PythonCharmers/python-future/issues/474
Reloadhttps://github.com/PythonCharmers/python-future/issues/474
Please reload this pagehttps://github.com/PythonCharmers/python-future/issues/474
PythonCharmers https://github.com/PythonCharmers
python-futurehttps://github.com/PythonCharmers/python-future
Notifications https://github.com/login?return_to=%2FPythonCharmers%2Fpython-future
Fork 295 https://github.com/login?return_to=%2FPythonCharmers%2Fpython-future
Star 1.2k https://github.com/login?return_to=%2FPythonCharmers%2Fpython-future
Code https://github.com/PythonCharmers/python-future
Issues 184 https://github.com/PythonCharmers/python-future/issues
Pull requests 5 https://github.com/PythonCharmers/python-future/pulls
Actions https://github.com/PythonCharmers/python-future/actions
Projects https://github.com/PythonCharmers/python-future/projects
Wiki https://github.com/PythonCharmers/python-future/wiki
Security and quality 0 https://github.com/PythonCharmers/python-future/security
Insights https://github.com/PythonCharmers/python-future/pulse
Code https://github.com/PythonCharmers/python-future
Issues https://github.com/PythonCharmers/python-future/issues
Pull requests https://github.com/PythonCharmers/python-future/pulls
Actions https://github.com/PythonCharmers/python-future/actions
Projects https://github.com/PythonCharmers/python-future/projects
Wiki https://github.com/PythonCharmers/python-future/wiki
Security and quality https://github.com/PythonCharmers/python-future/security
Insights https://github.com/PythonCharmers/python-future/pulse
#578https://github.com/PythonCharmers/python-future/pull/578
BuiltinTest.test_pow fails with Python-3.8https://github.com/PythonCharmers/python-future/issues/474#top
#578https://github.com/PythonCharmers/python-future/pull/578
https://github.com/sagitter
sagitterhttps://github.com/sagitter
on Jun 6, 2019https://github.com/PythonCharmers/python-future/issues/474#issue-452967753
c423752https://github.com/PythonCharmers/python-future/commit/c423752879acc05eebc29b0bb9909327bd5c7308
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.