pytest-dev / pytest

The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
https://pytest.org
MIT License
12.2k stars 2.7k forks source link

PERF: Profiling test collection? #7338

Closed jbrockmendel closed 4 years ago

jbrockmendel commented 4 years ago

The pandas tests suite clocks in at 90292 tests, which for me takes 67 seconds to run pytest pandas/tests --collect-only. This becomes troublesome when I want to re-run just a few failed tests with --lf, and doesn't appear amenable to parallelization.

When profiling with cProfile, it looks like just over half the time is spent in cacheprovider.pytest_collection_modifyitems

Are there suggested patterns for profiling and/or optimizing the test collection?

bluetech commented 4 years ago

Hi @jbrockmendel, this in particular is probably a performance bug that was fixed here: 4a42afdc2f3bb21f1685ac5c49b806ae34c36355

If you're able to confirm this fixes the problem by trying with pytest master, that'd be great. We can also consider backporting it to 5.4.x as it might be a little more time until 6.0.0 is released with that fix.

jbrockmendel commented 4 years ago

Thanks for the tip. Running on master:

Is there anything we can do on our end to keep this from growing with the test suite? What I have in mind here is antipatterns, likely fixture-related, that we should watch out for.

bluetech commented 4 years ago

the time for pytest pandas/tests --collect-only is roughly cut in half (35 seconds)

OK, most of it is likely from the fix, but some other optimizations might have contributed as well.

pytest pandas/tests --lf still collects everything even if just running 2 tests

Yep, it works that way.

Sorting by "tottime", nothing stands out:

We have been working on reducing the overhead, but all the easy optimizations have been made, so now it's progressively harder. I'd be interested to see the full cProfile (sorted by cumtime), on a non-synthetic large test suite like pandas.

Is there anything we can do on our end to keep this from growing with the test suite?

I don't have a good answer for that, maybe others can chime in here.

You can try to disable plugins you don't use, although the costly ones are usually the most useful ones.

jbrockmendel commented 4 years ago

I'd be interested to see the full cProfile (sorted by cumtime), on a non-synthetic large test suite like pandas.

``` >>> p.print_stats(.1) Mon Jun 8 13:49:30 2020 stats.dat 53447019 function calls (51055552 primitive calls) in 35.915 seconds Ordered by: cumulative time List reduced from 16772 to 1677 due to restriction <0.1> ncalls tottime percall cumtime percall filename:lineno(function) 3573/1 0.039 0.000 36.133 36.133 {built-in method builtins.exec} 1 0.000 0.000 36.133 36.133 runpy.py:195(run_module) 1 0.000 0.000 36.024 36.024 runpy.py:62(_run_code) 1 0.000 0.000 36.024 36.024 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/pytest/__main__.py:3() 1 0.000 0.000 36.024 36.024 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:145(console_main) 1 0.000 0.000 36.024 36.024 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:100(main) 226744/56 0.096 0.000 35.995 0.643 pluggy/manager.py:90(_hookexec) 226744/56 0.216 0.000 35.995 0.643 pluggy/manager.py:84() 226744/56 0.601 0.000 35.995 0.643 pluggy/callers.py:157(_multicall) 226548/2 0.580 0.000 35.994 17.997 pluggy/hooks.py:272(__call__) 1 0.000 0.000 34.136 34.136 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:249(pytest_cmdline_main) 1 0.000 0.000 34.136 34.136 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:188(wrap_session) 1 0.000 0.000 34.059 34.059 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:253(_main) 1 0.000 0.000 34.058 34.058 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:266(pytest_collection) 1 0.000 0.000 34.058 34.058 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:474(perform_collect) 1 0.000 0.000 30.333 30.333 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:501(_perform_collect) 439390/1839 0.064 0.000 29.557 0.016 {method 'extend' of 'list' objects} 447529/90381 0.380 0.000 29.506 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:722(genitems) 2636 0.015 0.000 27.638 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/runner.py:431(collect_one_node) 2636 0.011 0.000 26.790 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/runner.py:315(pytest_make_collect_report) 2636 0.016 0.000 26.764 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/runner.py:275(from_call) 2636 0.006 0.000 26.737 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/runner.py:316() 1616 0.092 0.000 21.035 0.013 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:399(collect) 72568 0.204 0.000 16.761 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:431(_makeitem) 75217/75215 0.030 0.000 14.833 0.000 {method 'send' of 'generator' objects} 145136 0.171 0.000 14.135 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:219(pytest_pycollect_makeitem) 105565 0.327 0.000 13.518 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:442(_genfunctions) 682 0.005 0.000 12.795 0.019 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:494(collect) 941 0.004 0.000 12.008 0.013 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:797(collect) 105565 0.189 0.000 8.530 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1533(from_parent) 108202 0.156 0.000 8.386 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:179(from_parent) 108203 0.140 0.000 8.231 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:98(_create) 105565 0.845 0.000 8.054 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1453(__init__) 2995/731 0.015 0.000 5.575 0.008 :978(_find_and_load) 2987/731 0.011 0.000 5.555 0.008 :948(_find_and_load_unlocked) 2840/811 0.013 0.000 5.377 0.007 :663(_load_unlocked) 1776/798 0.004 0.000 5.169 0.006 {built-in method builtins.__import__} 703 0.008 0.000 5.002 0.007 py/_path/local.py:646(pyimport) 791/715 0.011 0.000 4.805 0.007 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:128(exec_module) 18333 0.064 0.000 4.208 0.000 {method 'sort' of 'list' objects} 91233 0.102 0.000 4.116 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:424(sort_key) 91233 0.180 0.000 3.999 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:333(reportinfo) 491751/478695 0.153 0.000 3.888 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:291(obj) 682 0.002 0.000 3.605 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:500(_inject_setup_module_fixture) 682 0.001 0.000 3.593 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:491(_getobj) 682 0.005 0.000 3.593 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:556(_importtestmodule) 15273 0.034 0.000 3.496 0.000 pluggy/hooks.py:315(call_extra) 7568 0.151 0.000 3.028 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:920(parametrize) 91233 0.127 0.000 2.848 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/code.py:1155(getfslineno) 190126 0.180 0.000 2.768 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:502(__getattr__) 2816/155 0.001 0.000 2.598 0.017 :211(_call_with_frames_removed) 190126 0.162 0.000 2.587 0.000 pluggy/manager.py:361(subset_hook_caller) 1837/151 0.005 0.000 2.474 0.016 :722(exec_module) 190125 0.487 0.000 2.391 0.000 pluggy/manager.py:366() 15273 0.029 0.000 2.362 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:138(pytest_generate_tests) 2021 0.034 0.000 2.283 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:466(_getconftestmodules) 1 0.004 0.004 2.176 2.176 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1608(pytest_collection_modifyitems) 1 0.156 0.156 2.172 2.172 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:280(reorder_items) 105565 0.153 0.000 2.131 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1518() 4336753/4336742 2.061 0.000 2.062 0.000 {built-in method builtins.hasattr} 15273 0.105 0.000 1.960 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1478(getfixtureinfo) 7222/6577 0.093 0.000 1.933 0.000 {built-in method builtins.__build_class__} 1 0.000 0.000 1.888 1.888 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:260(_prepareconfig) 1 0.000 0.000 1.858 1.858 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:870(pytest_cmdline_parse) 1 0.000 0.000 1.858 1.858 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1086(parse) 1 0.000 0.000 1.854 1.854 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1012(_preparse) 3819 0.024 0.000 1.827 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:499(_importconftest) 186326 0.319 0.000 1.824 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:546(_gethookproxy) 90383 0.134 0.000 1.608 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/code.py:75(path) 99714/92947 0.078 0.000 1.377 0.000 :1009(_handle_fromlist) 1 0.000 0.000 1.355 1.355 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:707(pytest_collection_finish) 1 0.280 0.280 1.355 1.355 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:727(_printcollecteditems) 20/1 0.611 0.031 1.329 1.329 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:317(reorder_items_atscope) 138813 0.292 0.000 1.325 0.000 _collections_abc.py:664(__contains__) 15273 0.150 0.000 1.101 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1528(getfixtureclosure) 735 0.014 0.000 1.084 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:642(collect) 1 0.000 0.000 1.073 1.073 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:935(pytest_load_initial_conftests) 1 0.000 0.000 1.073 1.073 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:427(_set_initial_conftests) 1 0.000 0.000 1.073 1.073 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:458(_try_load_conftest) 1627 0.016 0.000 1.061 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:579(_collectfile) 291895 0.617 0.000 1.038 0.000 _collections_abc.py:824(update) 626754/138789 1.033 0.000 1.033 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:452(__getitem__) 126839 0.084 0.000 1.020 0.000 py/_path/local.py:376(check) 144257 0.978 0.000 0.978 0.000 {built-in method posix.stat} 184619 0.113 0.000 0.959 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:459(gethookproxy) 302931 0.098 0.000 0.927 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:291() 3871973 0.655 0.000 0.913 0.000 {built-in method builtins.isinstance} 15273 0.046 0.000 0.885 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1578(pytest_generate_tests) 183406 0.131 0.000 0.874 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:197(ihook) 105565 0.126 0.000 0.874 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:615(__init__) 91233 0.285 0.000 0.872 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:314(getmodpath) 97086 0.421 0.000 0.869 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:829(copy) 93299 0.064 0.000 0.843 0.000 py/_path/local.py:143(__init__) 302931 0.433 0.000 0.829 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:293(iter_markers_with_node) 30118 0.022 0.000 0.819 0.000 inspect.py:3081(signature) 90 0.000 0.000 0.810 0.009 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:534(collect) 90 0.004 0.000 0.810 0.009 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:552(_collect) 91 0.000 0.000 0.804 0.009 pandas/util/_test_decorators.py:41(safe_import) 31316/30661 0.136 0.000 0.800 0.000 inspect.py:2198(_signature_from_callable) 30118 0.020 0.000 0.797 0.000 inspect.py:2829(from_callable) 97086 0.663 0.000 0.792 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:853(setmulti2) 336524 0.613 0.000 0.783 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:250(listchain) 791 0.022 0.000 0.781 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:362(_read_pyc) 94533 0.082 0.000 0.774 0.000 posixpath.py:376(abspath) 108203 0.529 0.000 0.771 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:119(__init__) 941 0.004 0.000 0.748 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/source.py:285(findsource) 26/24 0.000 0.000 0.731 0.030 importlib/__init__.py:109(import_module) 34/24 0.000 0.000 0.731 0.030 :994(_gcd_import) 99440 0.064 0.000 0.714 0.000 genericpath.py:16(exists) 1 0.001 0.001 0.705 0.705 pluggy/manager.py:280(load_setuptools_entrypoints) 117146 0.452 0.000 0.701 0.000 posixpath.py:338(normpath) 1 0.000 0.000 0.694 0.694 pandas/conftest.py:19() 21350 0.083 0.000 0.686 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:139(getfuncargnames) 91975 0.066 0.000 0.668 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_io/terminalwriter.py:154(line) 4574 0.002 0.000 0.667 0.000 py/_path/common.py:365(visit) 11676/4574 0.005 0.000 0.665 0.000 py/_path/common.py:418(gen) 7 0.003 0.000 0.650 0.093 pandas/_config/localization.py:104(get_locales) 7 0.000 0.000 0.649 0.093 importlib_metadata/__init__.py:88(load) 5272 0.005 0.000 0.645 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:723(pytest_make_collect_report) 7568 0.010 0.000 0.630 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1040(_resolve_arg_ids) 7568 0.020 0.000 0.616 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1287(idmaker) 753 0.001 0.000 0.609 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:656(read_global_capture) 754 0.002 0.000 0.608 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:562(readouterr) 1508 0.004 0.000 0.605 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:478(snap) 184005 0.176 0.000 0.604 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_io/terminalwriter.py:140(write) 1 0.000 0.000 0.603 0.603 pandas/util/_test_decorators.py:25() 941 0.053 0.000 0.602 0.001 inspect.py:760(findsource) 341 0.003 0.000 0.593 0.002 py/_path/common.py:424() 7568 0.027 0.000 0.592 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1296() 81316/80776 0.027 0.000 0.584 0.000 {built-in method builtins.next} 1508 0.574 0.000 0.574 0.000 {method 'truncate' of '_io.TextIOWrapper' objects} 34330 0.050 0.000 0.565 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1265(_idvalset) 531 0.004 0.000 0.554 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:563(_recurse) 791 0.552 0.001 0.552 0.001 {built-in method marshal.load} 70552 0.077 0.000 0.531 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1670(getfixturedefs) 7 0.002 0.000 0.528 0.075 pandas/_config/localization.py:74(_valid_locales) 1898592 0.394 0.000 0.526 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:241(__hash__) 30503 0.213 0.000 0.520 0.000 inspect.py:2117(_signature_from_function) 2953 0.022 0.000 0.517 0.000 :882(_find_spec) 1435 0.003 0.000 0.511 0.000 pandas/_config/localization.py:47(can_set_locale) 361489 0.367 0.000 0.509 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:246(get_parametrized_fixture_keys) 1169 0.002 0.000 0.500 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:636(gethookproxy) 2807 0.005 0.000 0.498 0.000 pandas/_config/localization.py:14(set_locale) 2108201/2107009 0.461 0.000 0.497 0.000 {built-in method builtins.getattr} 29952 0.023 0.000 0.492 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1279() 38245 0.083 0.000 0.469 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1226(_idval) 80 0.000 0.000 0.462 0.006 pandas/util/_test_decorators.py:137(skip_if_no) 125079 0.127 0.000 0.454 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1686(_matchfactories) 2870 0.003 0.000 0.452 0.000 locale.py:593(setlocale) 1838 0.016 0.000 0.444 0.000 :793(get_code) 6098 0.438 0.000 0.438 0.000 {built-in method _locale.setlocale} 289173 0.235 0.000 0.403 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:357(normalize_mark_list) 102801 0.389 0.000 0.389 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:819(__init__) 5715 0.154 0.000 0.383 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:168(add_funcarg_pseudo_fixture_def) 1 0.000 0.000 0.373 0.373 pandas/__init__.py:3() 9157 0.020 0.000 0.369 0.000 re.py:271(_compile) 111353 0.088 0.000 0.368 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:347(get_unpacked_marks) 2642 0.001 0.000 0.347 0.000 re.py:232(compile) 1275 0.007 0.000 0.336 0.000 sre_compile.py:759(compile) 4086526 0.334 0.000 0.334 0.000 {method 'append' of 'list' objects} 2750 0.014 0.000 0.304 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:80(find_spec) 1 0.000 0.000 0.302 0.302 pandas/tests/window/conftest.py:1() 15273 0.169 0.000 0.297 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1515(_getautousenames) 105565 0.112 0.000 0.294 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1540(_initrequest) 154999 0.292 0.000 0.292 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:285(iter_markers) 7568 0.013 0.000 0.286 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1146(_validate_if_using_arg_names) 3820 0.012 0.000 0.282 0.000 pathlib.py:1153(resolve) 68993 0.061 0.000 0.280 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:367(istestfunction) 7568 0.020 0.000 0.272 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:213(get_default_arg_names) 1 0.000 0.000 0.272 0.272 pandas/util/_test_decorators.py:114(_skip_if_no_scipy) 1478/1474 0.003 0.000 0.271 0.000 contextlib.py:116(__exit__) 1 0.000 0.000 0.268 0.268 numba/__init__.py:3() 297856/205598 0.183 0.000 0.259 0.000 {method 'format' of 'str' objects} 975 0.258 0.000 0.258 0.000 {method 'read' of '_io.BufferedReader' objects} 1108 0.002 0.000 0.257 0.000 linecache.py:37(getlines) 430 0.008 0.000 0.255 0.001 linecache.py:82(updatecache) 843010 0.158 0.000 0.251 0.000 {method 'get' of 'dict' objects} 196109 0.166 0.000 0.247 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:78(ischildnode) 1 0.000 0.000 0.240 0.240 scipy/stats/__init__.py:381() 2950 0.003 0.000 0.239 0.000 :1272(find_spec) 421 0.002 0.000 0.239 0.001 pandas/core/frame.py:432(__init__) 7568 0.024 0.000 0.237 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:156(_for_parametrize) 1541/1537 0.002 0.000 0.236 0.000 contextlib.py:107(__enter__) 2951/2950 0.009 0.000 0.236 0.000 :1240(_get_spec) 184005 0.236 0.000 0.236 0.000 {method 'write' of '_io.TextIOWrapper' objects} 92194 0.073 0.000 0.235 0.000 posixpath.py:121(splitext) 2 0.000 0.000 0.233 0.116 pandas/util/_test_decorators.py:94(_skip_if_no_mpl) 329986 0.084 0.000 0.232 0.000 abc.py:137(__instancecheck__) 1 0.000 0.000 0.231 0.231 scipy/stats/stats.py:162() 18343 0.023 0.000 0.228 0.000 pathlib.py:664(_from_parts) 1419026 0.225 0.000 0.225 0.000 {method 'startswith' of 'str' objects} 4425 0.035 0.000 0.225 0.000 :1356(find_spec) 1 0.000 0.000 0.220 0.220 pandas/core/api.py:3() 20444 0.037 0.000 0.208 0.000 pathlib.py:644(_parse_args) 1275 0.005 0.000 0.203 0.000 sre_parse.py:913(parse) 2 0.000 0.000 0.202 0.101 matplotlib/cbook/deprecation.py:288(wrapper) 2 0.000 0.000 0.202 0.101 matplotlib/cbook/deprecation.py:347(wrapper) 1 0.000 0.000 0.201 0.201 pytest_astropy_header/display.py:5() 2 0.000 0.000 0.201 0.100 matplotlib/__init__.py:1232(use) 1838 0.004 0.000 0.200 0.000 :523(_compile_bytecode) 1 0.000 0.000 0.199 0.199 matplotlib/pyplot.py:19() 1 0.000 0.000 0.199 0.199 pandas/tests/indexes/datetimes/test_misc.py:1() 1 0.000 0.000 0.199 0.199 pandas/tests/indexes/datetimes/test_misc.py:138(TestDatetime64) 6077 0.021 0.000 0.195 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:960(__init__) 3820 0.008 0.000 0.194 0.000 pathlib.py:318(resolve) 1838 0.192 0.000 0.192 0.000 {built-in method marshal.loads} 3643/1276 0.011 0.000 0.192 0.000 sre_parse.py:411(_parse_sub) 2621/1133 0.032 0.000 0.190 0.000 pandas/core/indexes/base.py:283(__new__) 18081 0.051 0.000 0.189 0.000 py/_path/local.py:327(join) 1 0.000 0.000 0.188 0.188 pandas/tests/scalar/timestamp/test_timestamp.py:1() 1 0.000 0.000 0.188 0.188 pandas/tests/scalar/timestamp/test_timestamp.py:24(TestTimestampProperties) 4649/1331 0.070 0.000 0.187 0.000 sre_parse.py:469(_parse) 2827/2826 0.005 0.000 0.186 0.000 :576(module_from_spec) 1 0.000 0.000 0.184 0.184 pytest_doctestplus/plugin.py:5() 1838 0.072 0.000 0.184 0.000 :914(get_data) 105565 0.155 0.000 0.183 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:437(__init__) 330781/330761 0.137 0.000 0.180 0.000 {built-in method builtins.sorted} 17595 0.013 0.000 0.180 0.000 py/_path/common.py:318(isfile) 7568 0.006 0.000 0.180 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:147(_parse_parametrize_parameters) 520332/520323 0.175 0.000 0.178 0.000 {method 'join' of 'str' objects} 2184427/2181593 0.174 0.000 0.178 0.000 {built-in method builtins.hash} 1 0.000 0.000 0.178 0.178 pandas/tests/series/test_datetime_values.py:1() 1 0.000 0.000 0.178 0.178 pandas/tests/series/test_datetime_values.py:31(TestSeriesDatetimeValues) 161468 0.089 0.000 0.178 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:849(id) 1 0.000 0.000 0.177 0.177 pytest_doctestplus/plugin.py:485(DocTestFinderPlus) 1 0.000 0.000 0.177 0.177 pytest_doctestplus/utils.py:12(__init__) 1 0.000 0.000 0.176 0.176 pkg_resources/__init__.py:16() 7568 0.016 0.000 0.174 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:153() 314 0.004 0.000 0.173 0.001 pandas/core/arrays/categorical.py:301(__init__) 17 0.000 0.000 0.171 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/outcomes.py:178(importorskip) 3820 0.038 0.000 0.171 0.000 pathlib.py:322(_resolve) 2750 0.021 0.000 0.170 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:170(_early_rewrite_bailout) 1974608/1959218 0.162 0.000 0.168 0.000 {built-in method builtins.len} 724 0.010 0.000 0.167 0.000 py/_path/local.py:621(pypkgpath) 1 0.000 0.000 0.166 0.166 pandas/tests/io/excel/test_openpyxl.py:1() 1 0.000 0.000 0.166 0.166 openpyxl/__init__.py:4() 1684 0.042 0.000 0.164 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1612(parsefactories) 836 0.163 0.000 0.163 0.000 {built-in method numpy.arange} 1 0.000 0.000 0.162 0.162 pandas/tests/test_algos.py:1() 54575 0.089 0.000 0.161 0.000 inspect.py:2467(__init__) 91943 0.115 0.000 0.161 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:280(get_real_func) 1 0.000 0.000 0.161 0.161 pandas/tests/test_algos.py:1720(TestRank) 20446 0.090 0.000 0.160 0.000 pathlib.py:63(parse_parts) 962/858 0.009 0.000 0.159 0.000 pandas/core/series.py:206(__init__) 1 0.000 0.000 0.157 0.157 scipy/stats/distributions.py:8() 34330 0.023 0.000 0.157 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:105(extract_from) 19228 0.019 0.000 0.156 0.000 genericpath.py:27(isfile) 184018 0.119 0.000 0.155 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_io/terminalwriter.py:93(markup) 218 0.002 0.000 0.154 0.001 pandas/core/internals/construction.py:237(init_dict) 91352 0.108 0.000 0.153 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/code.py:56(__init__) 1 0.000 0.000 0.152 0.152 openpyxl/workbook/__init__.py:4() 1896 0.014 0.000 0.152 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:307(pytest_ignore_collect) 1 0.000 0.000 0.151 0.151 openpyxl/workbook/workbook.py:3() 68993 0.029 0.000 0.148 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:352(funcnamefilter) 329986 0.110 0.000 0.148 0.000 {built-in method _abc._abc_instancecheck} 764015 0.120 0.000 0.148 0.000 {built-in method posix.fspath} 2749 0.021 0.000 0.147 0.000 py/_path/common.py:321(parts) 186348 0.144 0.000 0.144 0.000 {method 'difference' of 'set' objects} 1 0.044 0.044 0.143 0.143 hypothesis/extra/pytestplugin.py:188(pytest_collection_modifyitems) 941 0.074 0.000 0.142 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/source.py:291() 108203 0.140 0.000 0.140 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:447(__init__) 92194 0.096 0.000 0.136 0.000 genericpath.py:121(_splitext) 408467 0.131 0.000 0.131 0.000 {method 'match' of 're.Pattern' objects} 30590 0.012 0.000 0.130 0.000 pathlib.py:442(readlink) 2 0.000 0.000 0.129 0.065 pkg_resources/__init__.py:3236(_call_aside) 1 0.000 0.000 0.129 0.129 pkg_resources/__init__.py:3253(_initialize_master_working_set) 96713 0.061 0.000 0.129 0.000 posixpath.py:64(isabs) 321 0.001 0.000 0.128 0.000 pandas/core/internals/construction.py:60(arrays_to_mgr) 1 0.000 0.000 0.126 0.126 pandas/tests/io/test_html.py:1() 239749 0.126 0.000 0.126 0.000 {method 'split' of 'str' objects} 36323 0.029 0.000 0.126 0.000 py/_path/local.py:317(dirpath) 28199 0.030 0.000 0.126 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:84(param) 72568 0.084 0.000 0.125 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:382(_matches_prefix_or_glob_option) 467 0.118 0.000 0.125 0.000 {method 'readlines' of '_io._IOBase' objects} 1 0.000 0.000 0.124 0.124 bs4/__init__.py:15() 1 0.000 0.000 0.124 0.124 bs4/builder/__init__.py:2() 193 0.001 0.000 0.123 0.001 :1040(create_module) 1275 0.002 0.000 0.123 0.000 sre_compile.py:598(_code) 1 0.000 0.000 0.123 0.123 astropy/tests/helper.py:5() 193 0.122 0.001 0.123 0.001 {built-in method _imp.create_dynamic} 31220 0.085 0.000 0.122 0.000 inspect.py:2750(__init__) 1 0.000 0.000 0.122 0.122 astropy/units/__init__.py:11() 1 0.000 0.000 0.121 0.121 pandas/tests/io/test_sql.py:18() 430 0.007 0.000 0.120 0.000 tokenize.py:443(open) 30591 0.119 0.000 0.119 0.000 {built-in method posix.readlink} 1524/1493 0.008 0.000 0.117 0.000 pandas/core/construction.py:389(sanitize_array) 1 0.000 0.000 0.116 0.116 pandas/core/groupby/__init__.py:1() 98 0.000 0.000 0.116 0.001 pandas/core/arrays/categorical.py:2693(factorize_from_iterables) 306 0.000 0.000 0.116 0.000 pandas/core/arrays/categorical.py:2715() 208 0.001 0.000 0.115 0.001 pandas/core/arrays/categorical.py:2655(factorize_from_iterable) 1 0.000 0.000 0.115 0.115 hypothesis/__init__.py:21() 1 0.000 0.000 0.115 0.115 pandas/core/groupby/generic.py:7() 1838 0.111 0.000 0.111 0.000 {method 'read' of '_io.FileIO' objects} 15273 0.022 0.000 0.111 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1459(_get_direct_parametrize_args) 11783 0.006 0.000 0.110 0.000 :74(_path_stat) 9385 0.008 0.000 0.109 0.000 pathlib.py:629(__new__) 2/1 0.000 0.000 0.109 0.109 runpy.py:102(_get_module_details) 7 0.000 0.000 0.109 0.016 pandas/_config/localization.py:99(_default_locale_getter) 7 0.000 0.000 0.109 0.016 subprocess.py:367(check_output) 7 0.001 0.000 0.109 0.016 subprocess.py:447(run) 1 0.000 0.000 0.108 0.108 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/pytest/__init__.py:4() 72568 0.073 0.000 0.107 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/unittest.py:46(pytest_pycollect_makeitem) 1 0.000 0.000 0.106 0.106 pytest_arraydiff/plugin.py:32() 232808 0.074 0.000 0.105 0.000 py/_path/local.py:165(__hash__) 42455 0.060 0.000 0.105 0.000 posixpath.py:154(dirname) 91963 0.046 0.000 0.104 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:202(__repr__) 9 0.001 0.000 0.103 0.011 subprocess.py:920(communicate) 97283 0.042 0.000 0.102 0.000 pluggy/_tracing.py:58(__call__) 30174 0.073 0.000 0.101 0.000 inspect.py:484(unwrap) 1 0.000 0.000 0.100 0.100 openpyxl/worksheet/worksheet.py:3() 5630 0.012 0.000 0.099 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/pathlib.py:363(fnmatch_ex) 18841/18817 0.016 0.000 0.098 0.000 {built-in method builtins.any} 20 0.000 0.000 0.098 0.005 pkg_resources/__init__.py:612(add_entry) 15401 0.006 0.000 0.095 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1487() 2540 0.081 0.000 0.094 0.000 {built-in method io.open} 498 0.001 0.000 0.093 0.000 pkg_resources/__init__.py:2038(find_on_path) 454 0.003 0.000 0.093 0.000 tokenize.py:350(detect_encoding) 20769 0.016 0.000 0.093 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1213(_ascii_escaped_by_config) 75 0.001 0.000 0.089 0.001 pandas/core/indexes/multi.py:389(from_arrays) 1 0.000 0.000 0.089 0.089 numpy/__init__.py:106() 136141 0.089 0.000 0.089 0.000 {built-in method __new__ of type object at 0x103697568} 7795/1275 0.036 0.000 0.089 0.000 sre_compile.py:71(_compile) 1 0.000 0.000 0.089 0.089 matplotlib/figure.py:12() 494 0.000 0.000 0.088 0.000 importlib_metadata/__init__.py:255(entry_points) 11994 0.010 0.000 0.088 0.000 genericpath.py:39(isdir) 1 0.000 0.000 0.088 0.088 pandas/tests/config/test_localization.py:1() 1 0.000 0.000 0.088 0.088 bs4/element.py:2() 5138 0.009 0.000 0.088 0.000 pathlib.py:1019(__new__) 289173 0.064 0.000 0.087 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:365() 226914 0.059 0.000 0.086 0.000 pluggy/hooks.py:224(is_historic) 461 0.001 0.000 0.086 0.000 tokenize.py:374(read_or_stop) 437 0.085 0.000 0.085 0.000 {method 'readline' of '_io.BufferedReader' objects} 1 0.000 0.000 0.085 0.085 pandas/core/arrays/__init__.py:1() 1 0.000 0.000 0.084 0.084 scipy/stats/_continuous_distns.py:6() 1 0.000 0.000 0.083 0.083 matplotlib/projections/__init__.py:1() 46215 0.046 0.000 0.083 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:344(getparent) 877486 0.082 0.000 0.082 0.000 {method 'items' of 'dict' objects} 807097 0.080 0.000 0.080 0.000 {method 'rstrip' of 'str' objects} 60433 0.027 0.000 0.080 0.000 py/_path/local.py:168(__eq__) 22926 0.046 0.000 0.080 0.000 py/_path/common.py:262(relto) 193/157 0.000 0.000 0.080 0.001 :1048(exec_module) 1 0.000 0.000 0.079 0.079 matplotlib/colorbar.py:20() 193/157 0.020 0.000 0.079 0.001 {built-in method _imp.exec_dynamic} 1 0.000 0.000 0.078 0.078 astropy/__init__.py:7() 1 0.000 0.000 0.077 0.077 matplotlib/axes/__init__.py:1() 1 0.000 0.000 0.077 0.077 matplotlib/axes/_subplots.py:1() 1172 0.005 0.000 0.076 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:190(pytest_collect_file) 1 0.000 0.000 0.076 0.076 pandas/core/frame.py:10() 5715 0.046 0.000 0.075 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:401(prune_dependency_tree) 72568 0.033 0.000 0.074 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:344(safe_isclass) 1 0.000 0.000 0.073 0.073 hypothesis/core.py:16() 1131 0.073 0.000 0.073 0.000 {built-in method posix.listdir} 132220 0.036 0.000 0.073 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:330(safe_getattr) 8 0.000 0.000 0.072 0.009 pandas/compat/_optional.py:47(import_optional_dependency) 1 0.000 0.000 0.072 0.072 sqlalchemy/__init__.py:8() 20785 0.021 0.000 0.072 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:243(ascii_escaped) 937 0.001 0.000 0.071 0.000 pandas/core/dtypes/dtypes.py:251(__init__) 237432 0.071 0.000 0.071 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:460(__setitem__) 937 0.001 0.000 0.071 0.000 pandas/core/dtypes/dtypes.py:400(_finalize) 18210/18031 0.018 0.000 0.070 0.000 typing.py:248(inner) 100 0.002 0.000 0.070 0.001 scipy/stats/_distn_infrastructure.py:1572(__init__) 289173 0.059 0.000 0.070 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:370() 637 0.003 0.000 0.069 0.000 pandas/core/dtypes/dtypes.py:552(validate_categories) 1 0.000 0.000 0.068 0.068 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/pytest/collect.py:1() 7911 0.013 0.000 0.067 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:336(__call__) 1 0.000 0.000 0.067 0.067 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/deprecated.py:11() 1 0.000 0.000 0.066 0.066 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/warning_types.py:1() 177 0.001 0.000 0.066 0.000 pandas/core/indexes/datetimes.py:811(date_range) 1 0.000 0.000 0.066 0.066 numba/core/decorators.py:3() 1 0.000 0.000 0.065 0.065 numba/stencils/stencil.py:6() 57277 0.046 0.000 0.065 0.000 enum.py:284(__call__) 1122/1121 0.004 0.000 0.064 0.000 inspect.py:714(getmodule) 1 0.000 0.000 0.064 0.064 pandas/core/computation/expressions.py:7() 1 0.000 0.000 0.063 0.063 pandas/core/computation/check.py:1() 196743 0.063 0.000 0.063 0.000 pluggy/callers.py:171() 494 0.002 0.000 0.063 0.000 importlib_metadata/__init__.py:111(_from_text) 226744 0.063 0.000 0.063 0.000 pluggy/callers.py:32(__init__) 177 0.009 0.000 0.063 0.000 pandas/core/arrays/datetimes.py:342(_generate_range) 321 0.002 0.000 0.063 0.000 pandas/core/internals/managers.py:1633(create_block_manager_from_arrays) 1 0.000 0.000 0.063 0.063 numexpr/__init__.py:22() 1 0.000 0.000 0.062 0.062 sqlalchemy/schema.py:10() 1 0.000 0.000 0.062 0.062 soupsieve/__init__.py:27() 15 0.000 0.000 0.062 0.004 astropy/utils/introspection.py:158(find_current_module) 15 0.000 0.000 0.062 0.004 astropy/utils/introspection.py:268(_get_module_from_frame) 1 0.000 0.000 0.062 0.062 sqlalchemy/sql/__init__.py:8() 396483 0.061 0.000 0.061 0.000 {method 'update' of 'dict' objects} 6034 0.005 0.000 0.061 0.000 py/_path/common.py:315(isdir) 148299 0.041 0.000 0.061 0.000 posixpath.py:41(_get_sep) 300067 0.061 0.000 0.061 0.000 pluggy/callers.py:68(get_result) 13 0.000 0.000 0.061 0.005 astropy/config/configuration.py:225(__init__) 11 0.000 0.000 0.060 0.005 matplotlib/artist.py:1611(kwdoc) 1 0.000 0.000 0.060 0.060 scipy/spatial/__init__.py:93() 6118 0.014 0.000 0.060 0.000 locale.py:384(normalize) 49 0.000 0.000 0.060 0.001 pandas/core/indexes/multi.py:455(from_tuples) 73/67 0.000 0.000 0.060 0.001 pluggy/hooks.py:288(call_historic) 1 0.000 0.000 0.060 0.060 soupsieve/css_parser.py:1() 952 0.002 0.000 0.060 0.000 pkg_resources/__init__.py:2125(distributions_from_metadata) 1 0.000 0.000 0.059 0.059 scipy/stats/_distn_infrastructure.py:5() 97283 0.059 0.000 0.059 0.000 pluggy/_tracing.py:32(_processmessage) 32102 0.023 0.000 0.059 0.000 {method 'update' of 'set' objects} 276 0.004 0.000 0.058 0.000 pandas/core/algorithms.py:503(factorize) 5520 0.013 0.000 0.058 0.000 :84(_path_is_mode_type) 1 0.000 0.000 0.058 0.058 matplotlib/axes/_axes.py:1() 5108 0.003 0.000 0.058 0.000 :93(_path_isfile) 2608/2600 0.002 0.000 0.058 0.000 pandas/core/indexes/base.py:5536(ensure_index) 1 0.000 0.000 0.057 0.057 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:956(_consider_importhook) 1 0.000 0.000 0.057 0.057 numexpr/utils.py:65(set_vml_num_threads) 1 0.057 0.057 0.057 0.057 {built-in method numexpr.interpreter._set_vml_num_threads} 2493 0.009 0.000 0.056 0.000 inspect.py:680(getsourcefile) 226621 0.056 0.000 0.056 0.000 pluggy/hooks.py:238(get_hookimpls) 1 0.000 0.000 0.056 0.056 numba/core/config.py:1() 1 0.000 0.000 0.055 0.055 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:976(_mark_plugins_for_rewrite) 8 0.000 0.000 0.055 0.007 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:694(_iter_rewritable_modules) 1 0.000 0.000 0.055 0.055 astropy/__init__.py:129(Conf) 56350 0.022 0.000 0.055 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:355(isnosetest) 258 0.001 0.000 0.055 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:989() 22635 0.013 0.000 0.055 0.000 pandas/core/dtypes/base.py:256(is_dtype) 169/167 0.001 0.000 0.054 0.000 pandas/core/arrays/datetimes.py:297(_from_sequence) 541653 0.054 0.000 0.054 0.000 {method 'reverse' of 'list' objects} 1 0.000 0.000 0.054 0.054 numba/core/types/__init__.py:1() 151/149 0.000 0.000 0.054 0.000 pandas/core/indexes/datetimes.py:224(__new__) 2827 0.012 0.000 0.053 0.000 :504(_init_module_attrs) 233353 0.053 0.000 0.053 0.000 {method 'rfind' of 'str' objects} 321 0.007 0.000 0.053 0.000 pandas/core/internals/managers.py:1673(form_blocks) 1 0.000 0.000 0.053 0.053 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:851(_do_configure) 15594 0.014 0.000 0.052 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:279(cls) 2 0.000 0.000 0.052 0.026 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/cacheprovider.py:362(pytest_collection_modifyitems) 217265 0.051 0.000 0.051 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:236(nodeid) 169 0.002 0.000 0.051 0.000 pandas/core/arrays/datetimes.py:1868(sequence_to_dt64ns) 1 0.000 0.000 0.050 0.050 openpyxl/utils/__init__.py:4() 1 0.000 0.000 0.050 0.050 pkg_resources/__init__.py:570(_build_master) 1 0.000 0.000 0.050 0.050 pkg_resources/__init__.py:557(__init__) 1 0.006 0.006 0.050 0.050 openpyxl/utils/cell.py:5() 1 0.000 0.000 0.049 0.049 numba/core/registry.py:1() 1 0.000 0.000 0.049 0.049 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/cacheprovider.py:465(pytest_configure) 337 0.018 0.000 0.049 0.000 scipy/_lib/doccer.py:12(docformat) 1 0.000 0.000 0.048 0.048 numba/core/dispatcher.py:4() 186320 0.048 0.000 0.048 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:498(__init__) 1285 0.003 0.000 0.048 0.000 pandas/core/internals/blocks.py:2717(make_block) 9387 0.011 0.000 0.048 0.000 fnmatch.py:19(fnmatch) 1896 0.003 0.000 0.047 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:290(_in_venv) 98114/90292 0.028 0.000 0.047 0.000 hypothesis/internal/detection.py:19(is_hypothesis_test) 115 0.001 0.000 0.047 0.000 scipy/stats/_distn_infrastructure.py:702(_construct_doc) 1 0.013 0.013 0.047 0.047 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/cacheprovider.py:356(__init__) 51037 0.036 0.000 0.047 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:178() 15 0.000 0.000 0.047 0.003 pandas/_testing.py:1663(makeDateIndex) 15553 0.024 0.000 0.047 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:52(_splitnode) 85280 0.029 0.000 0.047 0.000 inspect.py:72(isclass) 1 0.000 0.000 0.046 0.046 sqlalchemy/ext/declarative/__init__.py:8() 1 0.000 0.000 0.046 0.046 scipy/optimize/__init__.py:385() 1 0.000 0.000 0.046 0.046 numba/core/serialize.py:3() 793 0.005 0.000 0.046 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:209(_should_rewrite) 1 0.000 0.000 0.046 0.046 sqlalchemy/ext/declarative/api.py:7() 11 0.001 0.000 0.046 0.004 matplotlib/artist.py:1380(pprint_setters) 1 0.000 0.000 0.045 0.045 numba/core/types/containers.py:1() 34700 0.012 0.000 0.045 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:659() 15533 0.029 0.000 0.045 0.000 py/_path/local.py:287(_getbyspec) 10 0.001 0.000 0.045 0.005 subprocess.py:681(__init__) 1 0.000 0.000 0.045 0.045 sqlalchemy/ext/declarative/base.py:7() 1 0.000 0.000 0.045 0.045 numba/core/compiler.py:1() 611 0.001 0.000 0.044 0.000 posixpath.py:391(realpath) 2636 0.008 0.000 0.044 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:605(pytest_collectreport) 327 0.001 0.000 0.044 0.000 pytz/__init__.py:123(timezone) 1 0.000 0.000 0.044 0.044 sqlalchemy/orm/__init__.py:14() 315 0.000 0.000 0.044 0.000 abc.py:125(__new__) 10 0.001 0.000 0.044 0.004 subprocess.py:1412(_execute_child) 142818/142798 0.041 0.000 0.044 0.000 {built-in method builtins.issubclass} 11521 0.019 0.000 0.044 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:133(_parse_parametrize_args) 1915 0.007 0.000 0.044 0.000 pandas/core/internals/blocks.py:2671(get_block_type) 3792 0.004 0.000 0.044 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1178(_getconftest_pathlist) 3228 0.002 0.000 0.044 0.000 locale.py:575(getlocale) 1 0.000 0.000 0.043 0.043 numba/core/types/misc.py:1() 1 0.000 0.000 0.043 0.043 hypothesis/strategies/__init__.py:16() 75048 0.018 0.000 0.043 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:228(getfixturemarker) 23 0.000 0.000 0.042 0.002 pandas/core/indexes/multi.py:513(from_product) 1598/1582 0.007 0.000 0.042 0.000 pandas/core/dtypes/cast.py:1300(maybe_cast_to_datetime) 1 0.000 0.000 0.042 0.042 pandas/_libs/__init__.py:2() 494 0.005 0.000 0.041 0.000 configparser.py:600(__init__) 4592/3355 0.007 0.000 0.041 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} 18278 0.026 0.000 0.041 0.000 openpyxl/utils/cell.py:74(_get_column_letter) 321 0.001 0.000 0.041 0.000 pandas/core/internals/construction.py:329(_homogenize) 24119 0.015 0.000 0.040 0.000 :56(_path_join) 1 0.000 0.000 0.040 0.040 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:3() 863 0.004 0.000 0.040 0.000 textwrap.py:414(dedent) 1 0.000 0.000 0.040 0.040 pandas/_version.py:433(get_versions) 3792 0.012 0.000 0.040 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:490(_rget_with_confmod) 1 0.000 0.000 0.040 0.040 pandas/_version.py:190(git_pieces_from_vcs) 512 0.000 0.000 0.040 0.000 {built-in method pandas._libs.tslibs.timezones.maybe_get_tz} 108204 0.040 0.000 0.040 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/store.py:85(__init__) 3714 0.004 0.000 0.040 0.000 py/_path/common.py:243(fnmatch) 12040 0.009 0.000 0.040 0.000 py/_path/common.py:139(basename) 612/611 0.005 0.000 0.039 0.000 posixpath.py:400(_joinrealpath) 2 0.000 0.000 0.039 0.020 pandas/_version.py:63(run_command) 3228 0.003 0.000 0.039 0.000 locale.py:467(_parse_localename) 1 0.000 0.000 0.039 0.039 openpyxl/writer/excel.py:3() 1 0.000 0.000 0.038 0.038 matplotlib/contour.py:3() 110450 0.027 0.000 0.038 0.000 pandas/core/dtypes/generic.py:10(_check) 31475/28514 0.007 0.000 0.038 0.000 abc.py:141(__subclasscheck__) 93175 0.029 0.000 0.038 0.000 inspect.py:158(isfunction) 184060 0.038 0.000 0.038 0.000 {method 'rsplit' of 'str' objects} 1193 0.001 0.000 0.038 0.000 pandas/core/dtypes/missing.py:47(isna) 1 0.000 0.000 0.038 0.038 pandas/core/arrays/interval.py:1() 1 0.000 0.000 0.038 0.038 matplotlib/axes/_axes.py:97(Axes) 5596 0.011 0.000 0.038 0.000 locale.py:350(_replace_encoding) 1193 0.002 0.000 0.037 0.000 pandas/core/dtypes/missing.py:130(_isna) 2518 0.002 0.000 0.037 0.000 py/_path/common.py:222(check) 2 0.000 0.000 0.037 0.018 astropy/units/core.py:285(set_enabled_units) 2 0.000 0.000 0.037 0.018 astropy/units/core.py:154(set_enabled_units) 4 0.001 0.000 0.037 0.009 json/__init__.py:274(load) 5 0.004 0.001 0.037 0.007 astropy/units/core.py:173(add_enabled_units) 84862 0.028 0.000 0.037 0.000 inspect.py:2799() 484 0.002 0.000 0.037 0.000 pkg_resources/__init__.py:2580(from_location) 342 0.001 0.000 0.036 0.000 py/_path/local.py:387(listdir) 90293 0.023 0.000 0.036 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/cacheprovider.py:382() 725/717 0.002 0.000 0.036 0.000 pandas/core/construction.py:516(_try_cast) 1 0.000 0.000 0.036 0.036 numpy/core/__init__.py:7() 235 0.000 0.000 0.036 0.000 pandas/tests/generic/test_finalize.py:519(idfn) 2 0.000 0.000 0.036 0.018 pytz/lazy.py:97(_lazy) 179 0.000 0.000 0.036 0.000 pandas/tests/generic/test_finalize.py:528() 3757 0.006 0.000 0.035 0.000 py/_path/common.py:442(__call__) 17153 0.014 0.000 0.035 0.000 pandas/core/dtypes/common.py:1460(is_extension_array_dtype) 1 0.000 0.000 0.035 0.035 sqlalchemy/sql/expression.py:15() 295 0.000 0.000 0.035 0.000 pytz/__init__.py:194(_case_insensitive_zone_lookup) 3 0.000 0.000 0.035 0.012 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/cacheprovider.py:116(get) 2572 0.020 0.000 0.035 0.000 inspect.py:613(cleandoc) 1 0.000 0.000 0.034 0.034 numba/misc/special.py:1() 593 0.000 0.000 0.034 0.000 pytz/__init__.py:1104() 1 0.000 0.000 0.034 0.034 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/__init__.py:3() 2518 0.005 0.000 0.034 0.000 py/_path/common.py:91(_evaluate) 592 0.001 0.000 0.034 0.000 pytz/__init__.py:111(resource_exists) 1 0.000 0.000 0.034 0.034 numba/core/typing/__init__.py:1() 1 0.000 0.000 0.034 0.034 pandas/core/series.py:3() 68 0.000 0.000 0.034 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:380(register) 11 0.000 0.000 0.034 0.003 pandas/core/frame.py:698(__repr__) 1 0.000 0.000 0.033 0.033 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:1() 1 0.000 0.000 0.033 0.033 llvmlite/binding/__init__.py:3() 1 0.000 0.000 0.033 0.033 astropy/units/astrophys.py:7() 57496 0.014 0.000 0.033 0.000 sre_parse.py:254(get) 1 0.000 0.000 0.033 0.033 numba/core/typing/context.py:1() 1 0.000 0.000 0.033 0.033 openpyxl/cell/__init__.py:3() 1 0.000 0.000 0.033 0.033 soupsieve/css_parser.py:425(CSSParser) 605 0.002 0.000 0.033 0.000 pytz/__init__.py:78(open_resource) 75977 0.029 0.000 0.033 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1541(merge) 11 0.000 0.000 0.033 0.003 pandas/core/frame.py:774(to_string) 1 0.000 0.000 0.033 0.033 hypothesis/strategies/_internal/core.py:16() 15273 0.008 0.000 0.033 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:84(is_generator) 941 0.005 0.000 0.033 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:706(collect) 1 0.000 0.000 0.032 0.032 openpyxl/cell/cell.py:9() 1 0.000 0.000 0.032 0.032 pandas/io/api.py:3() 2985 0.026 0.000 0.032 0.000 sre_compile.py:276(_optimize_charset) 128662 0.022 0.000 0.032 0.000 {method 'add' of 'set' objects} 3739 0.008 0.000 0.032 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:312(with_args) 12 0.000 0.000 0.032 0.003 hypothesis/strategies/_internal/core.py:2156(register_type_strategy) 1 0.000 0.000 0.032 0.032 tables/__init__.py:20() 1 0.000 0.000 0.032 0.032 pandas/_libs/tslibs/__init__.py:2() 15 0.000 0.000 0.032 0.002 soupsieve/css_parser.py:292(__init__) 1 0.000 0.000 0.032 0.032 numba/typed/__init__.py:1() 11 0.000 0.000 0.032 0.003 pandas/io/formats/format.py:892(to_string) 11 0.000 0.000 0.031 0.003 pandas/io/formats/format.py:505(get_result) 2325 0.002 0.000 0.031 0.000 inspect.py:594(getdoc) 1275 0.005 0.000 0.031 0.000 sre_compile.py:536(_compile_info) 242 0.000 0.000 0.031 0.000 pkg_resources/__init__.py:3280() 11 0.000 0.000 0.031 0.003 pandas/io/formats/format.py:793(write_result) 791 0.001 0.000 0.031 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:1076(try_makedirs) 1 0.000 0.000 0.031 0.031 pandas/tests/io/excel/test_writers.py:1() 31475/28514 0.025 0.000 0.031 0.000 {built-in method _abc._abc_subclasscheck} 817 0.003 0.000 0.031 0.000 pandas/core/dtypes/missing.py:193(_isna_ndarraylike) 241 0.000 0.000 0.031 0.000 pkg_resources/__init__.py:2778(activate) 1 0.000 0.000 0.031 0.031 pandas/tests/io/excel/test_writers.py:51(TestRoundTrip) 2318 0.030 0.000 0.030 0.000 {built-in method builtins.dir} 361198 0.030 0.000 0.030 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:338() 310 0.002 0.000 0.030 0.000 :1404(_fill_cache) 1 0.000 0.000 0.030 0.030 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:229(get_config) 1 0.000 0.000 0.030 0.030 matplotlib/__init__.py:101() 1 0.000 0.000 0.030 0.030 pandas/tests/window/conftest.py:99(_create_consistency_data) 88 0.000 0.000 0.030 0.000 pandas/core/series.py:340(_init_dict) 19217 0.014 0.000 0.030 0.000 pandas/core/dtypes/common.py:1600(_is_dtype_type) 1 0.000 0.000 0.030 0.030 pandas/tests/indexes/test_base.py:1() 1720 0.022 0.000 0.030 0.000 {method 'read' of '_io.TextIOWrapper' objects} 4467 0.013 0.000 0.030 0.000 :271(cache_from_source) 1 0.000 0.000 0.029 0.029 matplotlib/text.py:3() 88 0.000 0.000 0.029 0.000 pandas/core/construction.py:595(create_series_with_explicit_dtype) 10 0.029 0.003 0.029 0.003 {built-in method _posixsubprocess.fork_exec} 862 0.002 0.000 0.029 0.000 pandas/core/dtypes/cast.py:86(maybe_convert_platform) 5450 0.004 0.000 0.029 0.000 :403(cached) 3338 0.002 0.000 0.029 0.000 py/_path/common.py:312(exists) 494 0.008 0.000 0.029 0.000 configparser.py:1314(__init__) 106573 0.029 0.000 0.029 0.000 {method 'copy' of 'dict' objects} 770 0.009 0.000 0.029 0.000 {built-in method pandas._libs.tslibs.offsets.to_offset} 346 0.000 0.000 0.029 0.000 py/_error.py:62(checked_call) 15273 0.018 0.000 0.029 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:886(__init__) 1 0.000 0.000 0.028 0.028 matplotlib/collections.py:10() 2995 0.003 0.000 0.028 0.000 :147(__enter__) 227172 0.028 0.000 0.028 0.000 {method 'keys' of 'dict' objects} 3261 0.005 0.000 0.028 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/pathlib.py:398(parts) 64675 0.020 0.000 0.028 0.000 sre_parse.py:164(__getitem__) 543 0.003 0.000 0.028 0.000 inspect.py:1089(getfullargspec) 703 0.002 0.000 0.028 0.000 pandas/core/internals/managers.py:1522(from_array) 114672 0.028 0.000 0.028 0.000 {built-in method sys.intern} 10 0.000 0.000 0.028 0.003 pkg_resources/__init__.py:2012(_by_version_descending) 29 0.000 0.000 0.028 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:615(import_plugin) 1098 0.019 0.000 0.027 0.000 {pandas._libs.lib.maybe_convert_objects} 1 0.000 0.000 0.027 0.027 importlib_metadata/__init__.py:1() 516 0.002 0.000 0.027 0.000 importlib_metadata/__init__.py:510(read_text) 755 0.001 0.000 0.027 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:211(pytest_pycollect_makemodule) 1 0.000 0.000 0.027 0.027 openpyxl/drawing/spreadsheet_drawing.py:3() 24 0.000 0.000 0.027 0.001 matplotlib/cbook/deprecation.py:314(_delete_parameter) 128 0.000 0.000 0.027 0.000 astropy/units/core.py:2289(def_unit) 1 0.000 0.000 0.027 0.027 pandas/core/generic.py:1() 705 0.026 0.000 0.026 0.000 {built-in method builtins.compile} 1 0.000 0.000 0.026 0.026 sqlalchemy/sql/__init__.py:79(__go) 139908 0.026 0.000 0.026 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:839(_checkargnotcontained) 68 0.001 0.000 0.026 0.000 pluggy/manager.py:95(register) 1 0.000 0.000 0.026 0.026 pkg_resources/_vendor/packaging/requirements.py:4() 13527/13400 0.023 0.000 0.026 0.000 {built-in method numpy.array} 8517 0.005 0.000 0.026 0.000 pandas/core/dtypes/common.py:456(is_period_dtype) 2518 0.001 0.000 0.026 0.000 py/_path/common.py:85(fnmatch) 1 0.000 0.000 0.026 0.026 scipy/optimize/_minimize.py:8() 367833 0.026 0.000 0.026 0.000 typing.py:893(cast) 1 0.000 0.000 0.026 0.026 pandas/tests/io/formats/test_to_html.py:1() 791 0.003 0.000 0.026 0.000 os.py:196(makedirs) 38 0.000 0.000 0.026 0.001 numba/core/decorators.py:225(njit) 1 0.000 0.000 0.026 0.026 pandas/tests/io/formats/test_style.py:1() 1 0.000 0.000 0.026 0.026 numba/typed/typeddict.py:3() 1 0.000 0.000 0.026 0.026 astropy/units/si.py:7() 38 0.000 0.000 0.026 0.001 numba/core/decorators.py:26(jit) 71066 0.022 0.000 0.026 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1567(sort_by_scope) 9292 0.006 0.000 0.025 0.000 pandas/core/dtypes/common.py:530(is_categorical_dtype) 38 0.000 0.000 0.025 0.001 numba/core/decorators.py:181(wrapper) 2636 0.015 0.000 0.025 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:610() 15 0.000 0.000 0.025 0.002 importlib_metadata/__init__.py:233(metadata) 38 0.000 0.000 0.025 0.001 numba/core/dispatcher.py:653(__init__) 261 0.002 0.000 0.025 0.000 pandas/core/algorithms.py:1961(safe_sort) 1 0.000 0.000 0.025 0.025 numba/core/callconv.py:3() 6 0.000 0.000 0.025 0.004 json/__init__.py:299(loads) 6 0.000 0.000 0.025 0.004 json/decoder.py:332(decode) 6 0.024 0.004 0.025 0.004 json/decoder.py:343(raw_decode) 364892 0.025 0.000 0.025 0.000 {method 'popleft' of 'collections.deque' objects} 2822 0.004 0.000 0.025 0.000 :369(_get_cached) 1 0.000 0.000 0.025 0.025 numba/core/typeconv/rules.py:1() 1 0.000 0.000 0.025 0.025 pytest_cov/plugin.py:1() 9089/2719 0.020 0.000 0.025 0.000 sre_parse.py:174(getwidth) 1 0.000 0.000 0.025 0.025 pandas/tests/util/test_hashing.py:1() 1 0.000 0.000 0.025 0.025 pandas/tests/io/parser/test_common.py:4() 1 0.000 0.000 0.025 0.025 pandas/io/formats/style.py:3() 42 0.000 0.000 0.025 0.001 pandas/core/tools/datetimes.py:542(to_datetime) 1 0.000 0.000 0.024 0.024 numba/core/base.py:1() 1 0.000 0.000 0.024 0.024 pandas/io/formats/style.py:62(Styler) 15273 0.019 0.000 0.024 0.000 inspect.py:171(isgeneratorfunction) 412 0.001 0.000 0.024 0.000 matplotlib/artist.py:1278(get_valid_values) 17449/17447 0.014 0.000 0.024 0.000 pandas/core/dtypes/dtypes.py:99(find) 1 0.000 0.000 0.024 0.024 jinja2/environment.py:862(get_template) 1 0.000 0.000 0.024 0.024 jinja2/environment.py:846(_load_template) 4920 0.003 0.000 0.024 0.000 posixpath.py:168(islink) 1 0.000 0.000 0.024 0.024 jinja2/loaders.py:103(load) 1 0.000 0.000 0.024 0.024 numba/core/typeconv/rules.py:15(_init_casting_rules) 40 0.000 0.000 0.024 0.001 numba/core/typeconv/castgraph.py:119(insert_rule) 15 0.000 0.000 0.024 0.002 email/__init__.py:32(message_from_string) 3181/1799 0.005 0.000 0.024 0.000 astropy/units/core.py:1801(__call__) 8324 0.013 0.000 0.024 0.000 pathlib.py:704(__str__) 1 0.000 0.000 0.023 0.023 bs4/formatter.py:1() 755 0.002 0.000 0.023 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:539(from_parent) 1 0.000 0.000 0.023 0.023 jinja2/environment.py:603(compile) 38800 0.018 0.000 0.023 0.000 pathlib.py:294(splitroot) 96007 0.023 0.000 0.023 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:303(obj) 67599 0.023 0.000 0.023 0.000 sre_parse.py:233(__next) 22622 0.023 0.000 0.023 0.000 {method 'encode' of 'str' objects} 40 0.005 0.000 0.023 0.001 numba/core/typeconv/castgraph.py:92(propagate) 7699 0.004 0.000 0.023 0.000 pandas/core/dtypes/common.py:492(is_interval_dtype) 5602 0.015 0.000 0.023 0.000 encodings/__init__.py:43(normalize_encoding) 95014 0.023 0.000 0.023 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1119(getini) 1 0.000 0.000 0.023 0.023 bs4/dammit.py:8() 1 0.000 0.000 0.023 0.023 pandas/core/aggregation.py:4() 2153 0.015 0.000 0.023 0.000 {pandas._libs.lib.infer_dtype} 307 0.001 0.000 0.023 0.000 <__array_function__ internals>:2(isclose) 1 0.000 0.000 0.023 0.023 pandas/tests/frame/test_api.py:1() 2304 0.003 0.000 0.023 0.000 astropy/units/core.py:531(_get_physical_type_id) 1 0.000 0.000 0.023 0.023 attr/__init__.py:1() 1 0.000 0.000 0.023 0.023 openpyxl/chart/__init__.py:3() 328 0.001 0.000 0.022 0.000 pandas/util/_decorators.py:462(__call__) 1 0.000 0.000 0.022 0.022 coverage/__init__.py:9() 115 0.002 0.000 0.022 0.000 scipy/stats/_distn_infrastructure.py:622(_construct_argparser) 331 0.001 0.000 0.022 0.000 pkg_resources/__init__.py:2192(_handle_ns) 2698/2665 0.004 0.000 0.022 0.000 astropy/units/core.py:2051(__init__) 241 0.000 0.000 0.022 0.000 pkg_resources/__init__.py:2291(fixup_namespace_packages) 91233 0.020 0.000 0.022 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/source.py:295(getrawcode) 1419 0.004 0.000 0.022 0.000 pandas/core/dtypes/cast.py:1192(maybe_infer_to_datetimelike) 1 0.000 0.000 0.022 0.022 sqlalchemy/sql/naming.py:11() 1 0.000 0.000 0.022 0.022 pandas/tests/reshape/merge/test_join.py:1() 1 0.000 0.000 0.022 0.022 numpy/lib/__init__.py:13() 3/2 0.000 0.000 0.022 0.011 numba/core/utils.py:329(__get__) 38 0.000 0.000 0.022 0.001 numba/core/registry.py:38(target_context) 1 0.001 0.001 0.022 0.022 pandas/tests/indexes/test_base.py:46(TestIndex) 1 0.000 0.000 0.022 0.022 numba/core/registry.py:28(_toplevel_target_context) 1 0.000 0.000 0.022 0.022 numba/core/base.py:233(__init__) 7568 0.017 0.000 0.022 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:217() 1 0.000 0.000 0.022 0.022 hypothesis/_settings.py:20() 307 0.003 0.000 0.022 0.000 numpy/core/numeric.py:2167(isclose) 12 0.002 0.000 0.022 0.002 matplotlib/artist.py:1314(_get_setters_and_targets) 1 0.000 0.000 0.021 0.021 coverage/control.py:4() 1838 0.002 0.000 0.021 0.000 :951(path_stats) 1 0.000 0.000 0.021 0.021 sqlalchemy/events.py:8() 64 0.004 0.000 0.021 0.000 astropy/units/core.py:2231(_add_prefixes) 1 0.000 0.000 0.021 0.021 pandas/tests/arrays/boolean/test_arithmetic.py:1() 3261 0.014 0.000 0.021 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/pathlib.py:400() 1 0.000 0.000 0.021 0.021 pandas/core/indexes/api.py:1() 18732/17785 0.016 0.000 0.021 0.000 typing.py:664(__hash__) 1 0.000 0.000 0.021 0.021 pandas/tests/io/json/test_json_table_schema.py:1() 4669 0.012 0.000 0.021 0.000 :157(_get_module_lock) 20785 0.007 0.000 0.021 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/compat.py:232(_translate_non_printable) 8 0.000 0.000 0.021 0.003 importlib_metadata/__init__.py:250(version) 2/1 0.000 0.000 0.021 0.021 numba/core/compiler_lock.py:29(_acquire_compile_lock) 785 0.001 0.000 0.021 0.000 pkg_resources/__init__.py:2767(_get_metadata) 1 0.000 0.000 0.021 0.021 numba/core/cpu.py:44(init) 1 0.000 0.000 0.021 0.021 pandas/tests/frame/test_api.py:17(TestDataFrameMisc) 1 0.000 0.000 0.021 0.021 scipy/spatial/kdtree.py:3() 9387 0.007 0.000 0.021 0.000 fnmatch.py:64(fnmatchcase) 4920 0.021 0.000 0.021 0.000 {built-in method posix.lstat} 1689 0.001 0.000 0.021 0.000 matplotlib/artist.py:1350(is_alias) 1 0.000 0.000 0.020 0.020 yaml/__init__.py:2() 476 0.001 0.000 0.020 0.000 pkg_resources/__init__.py:2027(_by_version) 1 0.000 0.000 0.020 0.020 scipy/sparse/__init__.py:219() 6202 0.005 0.000 0.020 0.000 pandas/core/dtypes/dtypes.py:990(is_dtype) 6847 0.006 0.000 0.020 0.000 pandas/core/dtypes/common.py:194(is_object_dtype) 1 0.000 0.000 0.020 0.020 pandas/tests/extension/base/__init__.py:43() 504 0.001 0.000 0.020 0.000 pathlib.py:1212(read_text) 13/12 0.000 0.000 0.020 0.002 :634(_load_backward_compatible) 316 0.001 0.000 0.020 0.000 numpy/core/overrides.py:166(decorator) 54 0.000 0.000 0.020 0.000 attr/_make.py:946(wrap) 118685 0.020 0.000 0.020 0.000 py/_path/local.py:605(__str__) 1 0.000 0.000 0.020 0.020 jinja2/__init__.py:5() 1 0.000 0.000 0.020 0.020 bs4/builder/_html5lib.py:2() 2238 0.019 0.000 0.020 0.000 {method 'sub' of 're.Pattern' objects} 24119 0.013 0.000 0.019 0.000 :58() 1 0.000 0.000 0.019 0.019 pandas/tests/groupby/test_value_counts.py:5() 1 0.000 0.000 0.019 0.019 pandas/core/indexes/base.py:1() 2260 0.005 0.000 0.019 0.000 pandas/core/common.py:217(asarray_tuplesafe) 1 0.000 0.000 0.019 0.019 openpyxl/styles/styleable.py:3() 1 0.000 0.000 0.019 0.019 pandas/tests/reshape/merge/test_merge.py:1() 269 0.001 0.000 0.019 0.000 pandas/core/internals/managers.py:1785(_multi_blockify) 134 0.000 0.000 0.019 0.000 pkg_resources/__init__.py:2984(_reload_version) 290 0.003 0.000 0.019 0.000 pandas/core/algorithms.py:1586(take_nd) 1 0.000 0.000 0.019 0.019 scipy/optimize/_trustregion_constr/__init__.py:1() 6 0.000 0.000 0.019 0.003 pkg_resources/extern/__init__.py:35(load_module) 1 0.000 0.000 0.019 0.019 html5lib/__init__.py:21() 1 0.000 0.000 0.019 0.019 hypothesis/internal/conjecture/engine.py:16() 1 0.001 0.001 0.019 0.019 scipy/__init__.py:58() 4039 0.008 0.000 0.019 0.000 numpy/core/_dtype.py:333(_name_get) 134 0.000 0.000 0.019 0.000 pkg_resources/__init__.py:2772(_get_version) 3852/2784 0.003 0.000 0.019 0.000 astropy/units/core.py:2173(decompose) 134 0.000 0.000 0.019 0.000 pkg_resources/__init__.py:2550(_version_from_file) 1 0.002 0.002 0.019 0.019 openpyxl/styles/builtins.py:5() 1 0.000 0.000 0.019 0.019 scipy/optimize/_trustregion_constr/minimize_trustregion_constr.py:1() 9127 0.016 0.000 0.019 0.000 typing.py:809(__new__) 476 0.001 0.000 0.019 0.000 pkg_resources/__init__.py:2033() 9558 0.010 0.000 0.018 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1549(_getobj) 2 0.000 0.000 0.018 0.009 pandas/core/generic.py:10494(_add_series_or_dataframe_operations) 925 0.002 0.000 0.018 0.000 pandas/core/indexes/base.py:5703(_maybe_cast_data_without_dtype) 756 0.004 0.000 0.018 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:509(__init__) 1 0.000 0.000 0.018 0.018 pandas/tests/frame/test_analytics.py:1() 385/189 0.001 0.000 0.018 0.000 hypothesis/strategies/_internal/strategies.py:96(accept) 1 0.000 0.000 0.018 0.018 pandas/tests/frame/test_analytics.py:259(TestDataFrameAnalytics) 184018 0.018 0.000 0.018 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_io/terminalwriter.py:98() 276 0.001 0.000 0.018 0.000 pandas/core/algorithms.py:463(_factorize_array) 1 0.000 0.000 0.018 0.018 importlib_metadata/__init__.py:546(version) 1 0.000 0.000 0.018 0.018 pandas/tests/io/json/test_pandas.py:1() 1 0.000 0.000 0.018 0.018 matplotlib/rcsetup.py:15() 1172 0.002 0.000 0.018 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/doctest.py:119(pytest_collect_file) 2101 0.003 0.000 0.018 0.000 pathlib.py:698(_make_child) 2180 0.007 0.000 0.018 0.000 pkg_resources/_vendor/packaging/version.py:198(__init__) 8 0.000 0.000 0.018 0.002 pandas/tests/groupby/test_value_counts.py:17(seed_df) 152058 0.018 0.000 0.018 0.000 py/_path/common.py:400(__fspath__) 1562 0.002 0.000 0.018 0.000 pkg_resources/_vendor/packaging/version.py:24(parse) 5476 0.005 0.000 0.018 0.000 pandas/core/dtypes/dtypes.py:1202(is_dtype) 1 0.000 0.000 0.018 0.018 numba/cpython/builtins.py:1() 3428/2403 0.002 0.000 0.018 0.000 astropy/units/core.py:1992(decompose) 6949 0.006 0.000 0.018 0.000 {pandas._libs.lib.is_list_like} 339/101 0.001 0.000 0.018 0.000 hypothesis/strategies/_internal/strategies.py:110(recur) 1 0.000 0.000 0.018 0.018 openpyxl/chart/area_chart.py:3() 3029 0.004 0.000 0.018 0.000 :1351(_get_spec) 508 0.000 0.000 0.017 0.000 pathlib.py:1194(open) 877 0.001 0.000 0.017 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:206(path_matches_patterns) 4104 0.009 0.000 0.017 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:402(__getattr__) 41 0.000 0.000 0.017 0.000 pandas/core/tools/datetimes.py:126(_maybe_cache) 1 0.000 0.000 0.017 0.017 numba/core/runtime/nrt.py:19(initialize) 1 0.000 0.000 0.017 0.017 attr/converters.py:3() 325 0.000 0.000 0.017 0.000 :421(_find_module_shim) 1 0.000 0.000 0.017 0.017 numba/core/runtime/nrtdynmod.py:202(compile_nrt_functions) 36/12 0.000 0.000 0.017 0.001 hypothesis/strategies/_internal/lazy.py:85(calc_is_empty) 180 0.001 0.000 0.017 0.000 pandas/core/internals/construction.py:360(extract_index) 44 0.000 0.000 0.017 0.000 pandas/core/arrays/interval.py:193(_simple_new) 1 0.000 0.000 0.017 0.017 pandas/tests/tseries/offsets/test_fiscal.py:3() 30275 0.011 0.000 0.017 0.000 inspect.py:504(_is_wrapper) 629/50 0.005 0.000 0.017 0.000 openpyxl/descriptors/serialisable.py:46(from_tree) 520 0.002 0.000 0.017 0.000 importlib_metadata/__init__.py:440(search) 38 0.000 0.000 0.017 0.000 pandas/core/arrays/interval.py:367(from_arrays) 1 0.000 0.000 0.017 0.017 attr/_make.py:1() 352 0.002 0.000 0.017 0.000 scipy/_lib/_util.py:277(getargspec_no_self) 1 0.000 0.000 0.017 0.017 pandas/tests/generic/test_finalize.py:3() 1 0.000 0.000 0.017 0.017 pandas/tests/io/excel/test_readers.py:1() 325 0.000 0.000 0.016 0.000 :1339(find_loader) 1 0.000 0.000 0.016 0.016 pandas/core/window/__init__.py:1() 196 0.007 0.000 0.016 0.000 collections/__init__.py:316(namedtuple) 104/36 0.000 0.000 0.016 0.000 hypothesis/strategies/_internal/lazy.py:98(wrapped_strategy) 19400 0.010 0.000 0.016 0.000 posixpath.py:52(normcase) 3739 0.010 0.000 0.016 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:218(combined_with) 1 0.000 0.000 0.016 0.016 numba/core/typing/builtins.py:1() 2860 0.004 0.000 0.016 0.000 pandas/core/dtypes/common.py:1330(is_bool_dtype) 161881 0.016 0.000 0.016 0.000 {method 'setdefault' of 'dict' objects} 1 0.000 0.000 0.016 0.016 chardet/__init__.py:19() 1 0.000 0.000 0.016 0.016 pandas/tests/window/conftest.py:241() 6136/6020 0.002 0.000 0.016 0.000 numpy/core/_asarray.py:16(asarray) 57262 0.016 0.000 0.016 0.000 enum.py:526(__new__) 1 0.000 0.000 0.016 0.016 soupsieve/css_parser.py:317(__init__) 1 0.001 0.001 0.016 0.016 pandas/tests/arrays/test_array.py:1() 21 0.000 0.000 0.016 0.001 numba/core/typeconv/castgraph.py:131(unsafe) 2981 0.008 0.000 0.016 0.000 functools.py:37(update_wrapper) 1 0.000 0.000 0.016 0.016 openpyxl/chart/_chart.py:3() 1328/1295 0.007 0.000 0.016 0.000 astropy/units/core.py:2126(_expand_and_gather) 12 0.000 0.000 0.016 0.001 matplotlib/artist.py:1230(__init__) 12 0.001 0.000 0.016 0.001 matplotlib/artist.py:1250(get_aliases) 6384 0.005 0.000 0.016 0.000 pandas/core/indexes/base.py:5633(maybe_extract_name) 2073 0.001 0.000 0.016 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:208() 635 0.000 0.000 0.016 0.000 re.py:180(search) 62 0.000 0.000 0.016 0.000 astropy/utils/decorators.py:738(__get__) 1 0.000 0.000 0.016 0.016 sqlalchemy/sql/functions.py:10() 1 0.000 0.000 0.016 0.016 sqlalchemy/engine/__init__.py:52() 128 0.001 0.000 0.015 0.000 hypothesis/internal/reflection.py:586(accept) 6902 0.010 0.000 0.015 0.000 posixpath.py:75(join) 1592 0.001 0.000 0.015 0.000 pathlib.py:919(__truediv__) 3822 0.010 0.000 0.015 0.000 :574(spec_from_file_location) 1 0.000 0.000 0.015 0.015 chardet/universaldetector.py:36() 568/391 0.002 0.000 0.015 0.000 typing.py:340(__getitem__) 2031/2029 0.004 0.000 0.015 0.000 pandas/core/generic.py:5208(__getattr__) 1 0.000 0.000 0.015 0.015 tables/file.py:21() 753 0.001 0.000 0.015 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:637(resume_global_capture) 930 0.003 0.000 0.015 0.000 typing.py:603(__init__) 1 0.000 0.000 0.015 0.015 llvmlite/binding/dylib.py:1() 1435 0.002 0.000 0.015 0.000 pandas/_config/localization.py:92() 11517 0.010 0.000 0.015 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:141() 21810 0.015 0.000 0.015 0.000 {method 'translate' of 'str' objects} 722 0.002 0.000 0.015 0.000 pandas/core/indexes/base.py:5627(default_index) 101179 0.015 0.000 0.015 0.000 {method 'pop' of 'list' objects} 15998 0.005 0.000 0.015 0.000 py/_path/local.py:185(__lt__) 97 0.000 0.000 0.015 0.000 pandas/core/internals/construction.py:498(to_arrays) 754 0.001 0.000 0.015 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:643(suspend_global_capture) 14 0.000 0.000 0.015 0.001 soupsieve/css_parser.py:1059(process_selectors) 68 0.000 0.000 0.015 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1496(pytest_plugin_registered) 45/14 0.001 0.000 0.015 0.001 soupsieve/css_parser.py:864(parse_selectors) 549 0.014 0.000 0.014 0.000 llvmlite/binding/ffi.py:112(__call__) 4433 0.003 0.000 0.014 0.000 :1203(_path_importer_cache) 4172 0.003 0.000 0.014 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:373(store_mark) 3548 0.005 0.000 0.014 0.000 codecs.py:319(decode) 1248 0.001 0.000 0.014 0.000 pandas/core/dtypes/common.py:566(is_string_dtype) 43 0.000 0.000 0.014 0.000 pandas/tests/window/conftest.py:235(no_nans) 1 0.000 0.000 0.014 0.014 pandas/tests/io/json/test_pandas.py:37(TestPandasContainer) 611 0.001 0.000 0.014 0.000 inspect.py:702(getabsfile) 27 0.000 0.000 0.014 0.001 matplotlib/__init__.py:969(rc_params_from_file) 1 0.000 0.000 0.014 0.014 llvmlite/binding/ffi.py:1() 1 0.000 0.000 0.014 0.014 yaml/loader.py:2() 426 0.004 0.000 0.014 0.000 openpyxl/descriptors/__init__.py:18(__new__) 1 0.000 0.000 0.014 0.014 email/parser.py:5() 7 0.000 0.000 0.014 0.002 six.py:91(__get__) 1339 0.001 0.000 0.014 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:634(_visit_filter) 3016 0.011 0.000 0.014 0.000 {method 'seek' of '_io.TextIOWrapper' objects} 1 0.000 0.000 0.014 0.014 sqlalchemy/sql/dml.py:11() 1 0.000 0.000 0.014 0.014 xlsxwriter/__init__.py:1() 4 0.000 0.000 0.014 0.004 six.py:159(_resolve) 7 0.000 0.000 0.014 0.002 six.py:80(_import_module) 753 0.002 0.000 0.014 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:539(resume_capturing) 1 0.000 0.000 0.014 0.014 matplotlib/fontconfig_pattern.py:6() 97 0.001 0.000 0.014 0.000 pandas/core/internals/construction.py:551(_list_to_arrays) 1 0.000 0.000 0.014 0.014 pkg_resources/_vendor/pyparsing.py:75() 494 0.001 0.000 0.014 0.000 configparser.py:719(read_string) 1 0.000 0.000 0.014 0.014 scipy/spatial/_procrustes.py:6() 1 0.000 0.000 0.014 0.014 pandas/tests/reshape/test_pivot_multilevel.py:1() 3575 0.003 0.000 0.014 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:379(istestclass) 1 0.000 0.000 0.014 0.014 email/feedparser.py:20() 1 0.000 0.000 0.014 0.014 astropy/config/__init__.py:7() 40 0.000 0.000 0.014 0.000 pandas/core/indexes/period.py:723(period_range) 3840 0.007 0.000 0.014 0.000 pathlib.py:751(__hash__) 1 0.000 0.000 0.014 0.014 xlwt/__init__.py:1() 1820 0.001 0.000 0.014 0.000 pandas/core/dtypes/common.py:1541(_is_dtype) 1 0.000 0.000 0.014 0.014 pandas/core/window/ewm.py:1() 1 0.000 0.000 0.014 0.014 sqlalchemy/engine/strategies.py:16() 109 0.001 0.000 0.014 0.000 pandas/core/indexes/multi.py:255(__new__) 865 0.014 0.000 0.014 0.000 {method 'findall' of 're.Pattern' objects} 1 0.000 0.000 0.014 0.014 scipy/linalg/__init__.py:189() 1 0.000 0.000 0.014 0.014 hypothesis/control.py:16() 1 0.000 0.000 0.014 0.014 scipy/sparse/linalg/__init__.py:109() 1 0.000 0.000 0.014 0.014 sqlalchemy/orm/__init__.py:276(__go) 1 0.000 0.000 0.014 0.014 xlsxwriter/workbook.py:9() 618 0.001 0.000 0.014 0.000 pkg_resources/__init__.py:1326(safe_version) 857 0.003 0.000 0.013 0.000 pandas/core/indexes/range.py:88(__new__) 1 0.000 0.000 0.013 0.013 jinja2/environment.py:4() 684 0.003 0.000 0.013 0.000 py/_path/local.py:247(new) 1 0.000 0.000 0.013 0.013 urllib/request.py:68() 1419 0.003 0.000 0.013 0.000 pandas/core/internals/blocks.py:115(__init__) 941 0.001 0.000 0.013 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:699(from_parent) 20 0.000 0.000 0.013 0.001 pandas/io/formats/format.py:699(_to_str_columns) 754 0.002 0.000 0.013 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:529(suspend_capturing) 484 0.001 0.000 0.013 0.000 pkg_resources/__init__.py:2567(__init__) 494 0.000 0.000 0.013 0.000 configparser.py:704(read_file) 1 0.000 0.000 0.013 0.013 hypothesis/strategies/_internal/types.py:16() 1 0.000 0.000 0.013 0.013 numba/core/ir_utils.py:6() 13 0.000 0.000 0.013 0.001 sqlalchemy/event/base.py:162(__init__) 18 0.000 0.000 0.013 0.001 pandas/core/indexes/datetimes.py:974(bdate_range) 13 0.001 0.000 0.013 0.001 sqlalchemy/event/base.py:167(_create_dispatcher_class) 356 0.007 0.000 0.013 0.000 scipy/_lib/doccer.py:179(indentcount_lines) 27 0.000 0.000 0.013 0.000 pandas/core/arrays/interval.py:294(from_breaks) 1 0.000 0.000 0.013 0.013 pandas/tests/io/parser/test_dtypes.py:4() 15 0.000 0.000 0.013 0.001 pandas/core/indexes/interval.py:1174(interval_range) 32 0.000 0.000 0.013 0.000 pandas/core/indexing.py:659(__setitem__) 1 0.000 0.000 0.013 0.013 astropy/units/function/__init__.py:7() 1 0.000 0.000 0.013 0.013 astropy/config/configuration.py:10() 494 0.006 0.000 0.013 0.000 configparser.py:990(_read) 1 0.000 0.000 0.013 0.013 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/main.py:1() 88190 0.013 0.000 0.013 0.000 inspect.py:2517(name) 214 0.001 0.000 0.013 0.000 pandas/core/arrays/_ranges.py:15(generate_regular_range) 9 0.000 0.000 0.013 0.001 numba/core/typeconv/typeconv.py:106(safe_unsafe) 1 0.000 0.000 0.013 0.013 pandas/io/excel/__init__.py:1() 2827 0.006 0.000 0.013 0.000 :318(__exit__) 1 0.000 0.000 0.013 0.013 pandas/tests/test_expressions.py:1() 1 0.000 0.000 0.013 0.013 email/_policybase.py:4() 1 0.000 0.000 0.013 0.013 hypothesis/internal/conjecture/pareto.py:16() 29 0.000 0.000 0.013 0.000 pandas/core/indexes/category.py:186(__new__) 1 0.000 0.000 0.013 0.013 openpyxl/chart/_3d.py:3() 1 0.000 0.000 0.013 0.013 pandas/tests/frame/test_apply.py:1() 1 0.000 0.000 0.012 0.012 html5lib/html5parser.py:1() 2829 0.012 0.000 0.012 0.000 {method 'reduce' of 'numpy.ufunc' objects} 1 0.000 0.000 0.012 0.012 numba/cpython/charseq.py:1() 10 0.012 0.001 0.012 0.001 {built-in method posix.read} 1 0.000 0.000 0.012 0.012 scipy/signal/__init__.py:288() 1 0.000 0.000 0.012 0.012 matplotlib/style/__init__.py:1() 334 0.001 0.000 0.012 0.000 pandas/core/algorithms.py:263(_get_data_algo) 23 0.000 0.000 0.012 0.001 pandas/core/indexes/interval.py:251(from_breaks) 5 0.001 0.000 0.012 0.002 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/argparsing.py:109(_getparser) 100 0.001 0.000 0.012 0.000 sqlalchemy/event/attr.py:82(__init__) 3428 0.002 0.000 0.012 0.000 pathlib.py:714(__fspath__) 1506 0.004 0.000 0.012 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:455(resume) 1 0.000 0.000 0.012 0.012 openpyxl/chart/marker.py:3() 7568 0.007 0.000 0.012 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1107(_resolve_arg_value_types) 3909 0.006 0.000 0.012 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1180(_find_parametrized_scope) 1 0.000 0.000 0.012 0.012 astropy/units/function/logarithmic.py:3() 1 0.000 0.000 0.012 0.012 numba/parfors/__init__.py:1() 1 0.000 0.000 0.012 0.012 pandas/tests/dtypes/test_common.py:1() 1 0.000 0.000 0.012 0.012 matplotlib/style/core.py:12() 1 0.000 0.000 0.012 0.012 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:104(pytest_sessionstart) 134 0.001 0.000 0.012 0.000 sqlalchemy/util/langhelpers.py:132(decorate) 1 0.000 0.000 0.012 0.012 sqlalchemy/orm/mapper.py:16() 1 0.000 0.000 0.012 0.012 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1449(__init__) 1427 0.001 0.000 0.012 0.000 sre_parse.py:96(closegroup) 2 0.000 0.000 0.012 0.006 ctypes/__init__.py:340(__init__) 6525 0.005 0.000 0.012 0.000 pandas/core/dtypes/common.py:1733(pandas_dtype) 1 0.000 0.000 0.012 0.012 openpyxl/styles/__init__.py:4() 2 0.012 0.006 0.012 0.006 {built-in method _ctypes.dlopen} 1 0.000 0.000 0.012 0.012 pandas/tests/io/json/test_json_table_schema.py:200(TestTableOrient) 6 0.000 0.000 0.012 0.002 pandas/core/frame.py:1629(from_records) 97 0.000 0.000 0.012 0.000 pandas/core/internals/construction.py:709(_convert_object_array) 315 0.000 0.000 0.012 0.000 pandas/core/indexes/base.py:2029(hasnans) 791 0.002 0.000 0.012 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:1096(get_cache_dir) 26 0.000 0.000 0.012 0.000 pkg_resources/_vendor/pyparsing.py:2779(__init__) 24 0.000 0.000 0.012 0.000 hypothesis/internal/reflection.py:109(required_args) 1 0.000 0.000 0.012 0.012 matplotlib/style/core.py:156(load_base_library) 1 0.000 0.000 0.012 0.012 matplotlib/style/core.py:188(read_style_directory) 97 0.000 0.000 0.012 0.000 pandas/core/internals/construction.py:732() 1508 0.003 0.000 0.012 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/capture.py:447(suspend) 310 0.005 0.000 0.012 0.000 :1190(_path_hooks) 1 0.000 0.000 0.012 0.012 jinja2/environment.py:537(_parse) 179 0.001 0.000 0.012 0.000 pandas/core/internals/managers.py:362(apply) 58 0.000 0.000 0.012 0.000 pandas/core/indexes/timedeltas.py:262(timedelta_range) 407 0.003 0.000 0.012 0.000 _strptime.py:318(_strptime) 1595 0.005 0.000 0.011 0.000 pandas/core/dtypes/cast.py:1558(construct_1d_object_array_from_listlike) 284 0.001 0.000 0.011 0.000 pandas/core/internals/construction.py:726(convert) 2715 0.002 0.000 0.011 0.000 py/_path/common.py:154(ext) 983 0.001 0.000 0.011 0.000 re.py:185(sub) 1 0.000 0.000 0.011 0.011 numba/parfors/parfor_lowering.py:1() 1 0.000 0.000 0.011 0.011 hypothesis/internal/reflection.py:17() 1247 0.001 0.000 0.011 0.000 pandas/core/dtypes/common.py:595(condition) 1 0.000 0.000 0.011 0.011 pandas/tests/window/test_rolling.py:1() 51457 0.011 0.000 0.011 0.000 {method 'endswith' of 'str' objects} 2132 0.009 0.000 0.011 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/rewrite.py:232(_is_marked_for_rewrite) 27 0.002 0.000 0.011 0.000 matplotlib/__init__.py:904(_rc_params_in_file) 7841 0.008 0.000 0.011 0.000 :1(__init__) 1 0.000 0.000 0.011 0.011 numba/core/codegen.py:217(finalize) 508 0.000 0.000 0.011 0.000 pathlib.py:1056(_opener) 135 0.002 0.000 0.011 0.000 hypothesis/internal/reflection.py:507(accept) 945 0.001 0.000 0.011 0.000 pandas/core/indexes/base.py:5649(_maybe_cast_with_dtype) 1546 0.001 0.000 0.011 0.000 matplotlib/__init__.py:784(__setitem__) 1 0.000 0.000 0.011 0.011 scipy/spatial/distance.py:72() 31678 0.011 0.000 0.011 0.000 {method 'values' of 'mappingproxy' objects} 1 0.000 0.000 0.011 0.011 pandas/tests/util/test_assert_frame_equal.py:1() 511 0.011 0.000 0.011 0.000 {built-in method posix.open} 3494 0.002 0.000 0.011 0.000 pandas/core/dtypes/common.py:381(is_datetime64tz_dtype) 1 0.000 0.000 0.011 0.011 pandas/tests/frame/test_apply.py:1060(TestDataFrameAggregate) 13645 0.007 0.000 0.011 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:793(scope2index) 24 0.000 0.000 0.011 0.000 inspect.py:2101(_signature_from_builtin) 1 0.000 0.000 0.011 0.011 pandas/tests/groupby/test_categorical.py:1() 1 0.000 0.000 0.011 0.011 pandas/core/internals/__init__.py:1() 1 0.000 0.000 0.011 0.011 pandas/tests/window/conftest.py:220(create_dataframes) 1360 0.001 0.000 0.011 0.000 astropy/units/core.py:1978(__init__) 21 0.000 0.000 0.011 0.001 pandas/core/arrays/datetimes.py:404() 24 0.000 0.000 0.011 0.000 inspect.py:1957(_signature_fromstr) 183 0.000 0.000 0.011 0.000 pluggy/hooks.py:328(_maybe_apply_history) 1 0.000 0.000 0.011 0.011 pandas/tests/indexes/interval/test_astype.py:1() 1 0.000 0.000 0.011 0.011 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/assertion/util.py:1() 100 0.000 0.000 0.011 0.000 sqlalchemy/event/legacy.py:155(_augment_fn_docs) 609 0.002 0.000 0.011 0.000 pandas/core/algorithms.py:69(_ensure_data) 709 0.010 0.000 0.011 0.000 pandas/core/arrays/datetimes.py:2357(generate_range) 35/27 0.000 0.000 0.011 0.000 soupsieve/css_parser.py:574(parse_pseudo_class) 2995 0.002 0.000 0.011 0.000 :151(__exit__) 15644/15615 0.006 0.000 0.011 0.000 numba/core/types/abstract.py:117(__hash__) 1 0.000 0.000 0.011 0.011 pandas/core/arrays/boolean.py:1() 685 0.001 0.000 0.011 0.000 pandas/core/dtypes/common.py:598(is_excluded_dtype) 1 0.000 0.000 0.011 0.011 pyparsing.py:96() 60 0.001 0.000 0.010 0.000 pandas/core/construction.py:56(array) 688 0.001 0.000 0.010 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1183(__call__) 237 0.001 0.000 0.010 0.000 pluggy/hooks.py:142(varnames) 40 0.000 0.000 0.010 0.000 pandas/core/arrays/period.py:231(_generate_range) 31/26 0.000 0.000 0.010 0.000 soupsieve/css_parser.py:721(parse_pseudo_open) 1 0.000 0.000 0.010 0.010 pandas/tests/frame/methods/test_replace.py:1() 1 0.000 0.000 0.010 0.010 pandas/tests/frame/methods/test_to_records.py:1() 1 0.000 0.000 0.010 0.010 jinja2/environment.py:580(_generate) 1 0.000 0.000 0.010 0.010 jinja2/compiler.py:78(generate) 1 0.000 0.000 0.010 0.010 pandas/tests/frame/methods/test_to_records.py:17(TestDataFrameToRecords) 1 0.000 0.000 0.010 0.010 openpyxl/reader/excel.py:4() 4669 0.009 0.000 0.010 0.000 :103(release) 923/1 0.001 0.000 0.010 0.010 jinja2/visitor.py:28(visit) 1 0.000 0.000 0.010 0.010 jinja2/compiler.py:712(visit_Template) 135 0.001 0.000 0.010 0.000 sqlalchemy/util/langhelpers.py:1677(inject_docstring_text) 1 0.000 0.000 0.010 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/__init__.py:1() 2210 0.001 0.000 0.010 0.000 pandas/_config/config.py:104(_get_option) 1 0.000 0.000 0.010 0.010 pandas/tests/indexes/interval/test_interval.py:1() 4669 0.009 0.000 0.010 0.000 :78(acquire) 7000 0.007 0.000 0.010 0.000 pathlib.py:687(_format_parsed_parts) 1 0.000 0.000 0.010 0.010 pandas/tests/frame/methods/test_replace.py:24(TestDataFrameReplace) 29203 0.007 0.000 0.010 0.000 sre_parse.py:172(append) 54515 0.010 0.000 0.010 0.000 {built-in method builtins.min} 1 0.000 0.000 0.010 0.010 scipy/integrate/__init__.py:88() 955 0.001 0.000 0.010 0.000 pandas/core/indexes/base.py:4099(_can_hold_identifiers_and_holds_name) 2 0.000 0.000 0.010 0.005 astropy/units/core.py:1314(si) 366 0.001 0.000 0.010 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/doctest.py:140(_is_doctest) 2 0.000 0.000 0.010 0.005 astropy/units/core.py:1269(to_system) 216 0.000 0.000 0.010 0.000 pandas/core/indexes/base.py:2009(_isnan) 41 0.001 0.000 0.010 0.000 pandas/core/arrays/interval.py:467(_validate) 1 0.000 0.000 0.010 0.010 scipy/stats/_discrete_distns.py:5() 64178 0.010 0.000 0.010 0.000 {method 'strip' of 'str' objects} 1 0.000 0.000 0.010 0.010 pandas/tests/io/excel/test_readers.py:121(TestReaders) 1 0.000 0.000 0.010 0.010 pandas/tests/tseries/offsets/test_offsets.py:1() 1 0.000 0.000 0.010 0.010 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_code/code.py:1() 1 0.000 0.000 0.010 0.010 pandas/tests/reductions/test_reductions.py:1() 1 0.000 0.000 0.010 0.010 pandas/core/groupby/groupby.py:8() 3020 0.010 0.000 0.010 0.000 {built-in method posix.dup2} 364 0.001 0.000 0.010 0.000 numba/core/extending.py:110(decorate) 2 0.000 0.000 0.010 0.005 astropy/units/core.py:1139(compose) 1 0.000 0.000 0.010 0.010 pandas/tests/arithmetic/test_datetime64.py:4() 1045 0.003 0.000 0.010 0.000 numpy/core/fromnumeric.py:73(_wrapreduction) 1 0.000 0.000 0.010 0.010 pandas/core/arrays/base.py:8() 1 0.000 0.000 0.010 0.010 pandas/tests/indexes/interval/test_interval.py:30(TestIntervalIndex) 1 0.000 0.000 0.010 0.010 pandas/core/arrays/masked.py:1() 1 0.000 0.000 0.010 0.010 pandas/tests/groupby/aggregate/test_other.py:3() 8426 0.006 0.000 0.010 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1211(getoption) 4171 0.010 0.000 0.010 0.000 {built-in method numpy.empty} 1384 0.003 0.000 0.010 0.000 astropy/units/core.py:1532(__init__) 18081 0.007 0.000 0.010 0.000 py/_path/local.py:333() 1 0.000 0.000 0.010 0.010 bs4/builder/_lxml.py:2() 4 0.000 0.000 0.010 0.002 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/argparsing.py:149(parse_known_and_unknown_args) 10 0.000 0.000 0.010 0.001 pandas/io/formats/format.py:825() 351 0.000 0.000 0.010 0.000 pandas/core/dtypes/dtypes.py:274(_from_values_or_dtype) 1 0.000 0.000 0.010 0.010 pandas/tests/frame/test_operators.py:1() 31767 0.009 0.000 0.010 0.000 {built-in method builtins.setattr} 15 0.000 0.000 0.010 0.001 scipy/stats/_distn_infrastructure.py:2827(__init__) 1 0.000 0.000 0.010 0.010 pandas/tests/series/methods/test_update.py:1() 2637 0.005 0.000 0.010 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:615(report_collect) 1 0.000 0.000 0.010 0.010 pandas/tests/frame/test_operators.py:13(TestDataFrameUnaryOperators) 1 0.000 0.000 0.010 0.010 pandas/tests/series/methods/test_update.py:8(TestUpdate) 183 0.000 0.000 0.009 0.000 pluggy/hooks.py:339(__init__) 2870 0.003 0.000 0.009 0.000 pandas/_config/config.py:200(__getattr__) 1 0.000 0.000 0.009 0.009 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:1() 1 0.000 0.000 0.009 0.009 numba/parfors/parfor.py:14() 1 0.000 0.000 0.009 0.009 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:655(pytest_sessionstart) 1 0.000 0.000 0.009 0.009 xlwt/Worksheet.py:35() 1 0.000 0.000 0.009 0.009 astropy/units/quantity.py:7() 1674 0.002 0.000 0.009 0.000 :194(_lock_unlock_module) 1 0.000 0.000 0.009 0.009 scipy/interpolate/__init__.py:164() 1 0.000 0.000 0.009 0.009 pandas/tests/base/test_conversion.py:1() 1 0.000 0.000 0.009 0.009 scipy/special/__init__.py:628() 213 0.004 0.000 0.009 0.000 pandas/core/arrays/_ranges.py:73(_generate_range_overflow_safe) 1 0.000 0.000 0.009 0.009 pandas/tests/frame/test_reshape.py:1() 6981 0.005 0.000 0.009 0.000 typing.py:704(__setattr__) 2392 0.004 0.000 0.009 0.000 numpy/core/_ufunc_config.py:39(seterr) 1 0.000 0.000 0.009 0.009 pandas/tests/frame/test_reshape.py:12(TestDataFrameReshape) 17 0.000 0.000 0.009 0.001 sqlalchemy/util/deprecations.py:111(decorate) 3548 0.009 0.000 0.009 0.000 {built-in method _codecs.utf_8_decode} 1 0.000 0.000 0.009 0.009 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:690(pytest_report_header) 1 0.000 0.000 0.009 0.009 pandas/core/algorithms.py:4() 271 0.001 0.000 0.009 0.000 typing.py:621(__getitem__) 1 0.001 0.001 0.009 0.009 hypothesis/internal/conjecture/data.py:16() 236 0.000 0.000 0.009 0.000 pluggy/hooks.py:129(_getargspec) 1 0.000 0.000 0.009 0.009 jinja2/parser.py:935(parse) 1 0.000 0.000 0.009 0.009 numpy/lib/index_tricks.py:1() 1 0.000 0.000 0.009 0.009 pandas/io/excel/_base.py:1() 2 0.000 0.000 0.009 0.005 matplotlib/pyplot.py:182(switch_backend) 15 0.000 0.000 0.009 0.001 email/parser.py:59(parsestr) 688 0.002 0.000 0.009 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1245(fixture) 61043 0.009 0.000 0.009 0.000 {method 'lstrip' of 'str' objects} 1 0.000 0.000 0.009 0.009 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:1260(_plugin_nameversions) 56680 0.009 0.000 0.009 0.000 {method 'isidentifier' of 'str' objects} 4472 0.002 0.000 0.009 0.000 re.py:170(match) 15 0.000 0.000 0.009 0.001 email/parser.py:41(parse) 1 0.000 0.000 0.009 0.009 numpy/core/numeric.py:1() 1148 0.003 0.000 0.009 0.000 numpy/core/numeric.py:283(full) 1 0.000 0.000 0.009 0.009 email/utils.py:5() 14 0.000 0.000 0.009 0.001 pluggy/manager.py:45(__getattr__) 483 0.001 0.000 0.009 0.000 importlib_metadata/__init__.py:413(joinpath) 5 0.001 0.000 0.009 0.002 astropy/units/core.py:35(_flatten_units_collection) 2740 0.001 0.000 0.009 0.000 pandas/core/dtypes/common.py:603() 670 0.001 0.000 0.009 0.000 <__array_function__ internals>:2(all) 1 0.000 0.000 0.009 0.009 numba/cpython/unicode.py:1() 8394 0.009 0.000 0.009 0.000 {method 'splitlines' of 'str' objects} 688 0.002 0.000 0.009 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1146(wrap_function_to_error_out_if_called_directly) 1 0.000 0.000 0.009 0.009 scipy/fft/__init__.py:72() 1 0.000 0.000 0.009 0.009 sqlalchemy/orm/events.py:10() 32 0.000 0.000 0.009 0.000 pandas/core/indexing.py:1512(_setitem_with_indexer) 1 0.000 0.000 0.009 0.009 pandas/tests/frame/test_dtypes.py:1() 1 0.000 0.000 0.009 0.009 matplotlib/cm.py:16() 1 0.000 0.000 0.009 0.009 matplotlib/patches.py:1() 1 0.000 0.000 0.009 0.009 pandas/tests/frame/test_dtypes.py:21(TestDataFrameDataTypes) 1 0.000 0.000 0.009 0.009 sqlalchemy/engine/base.py:7() 1 0.000 0.000 0.009 0.009 numba/core/cpu.py:1() 6 0.000 0.000 0.008 0.001 astropy/units/utils.py:78(generate_unit_summary) 1 0.000 0.000 0.008 0.008 attr/_compat.py:1() 1 0.000 0.000 0.008 0.008 scipy/ndimage/__init__.py:119() 1 0.000 0.000 0.008 0.008 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/fixtures.py:1() 1088 0.001 0.000 0.008 0.000 pkg_resources/_vendor/packaging/version.py:74(__init__) 1 0.000 0.000 0.008 0.008 matplotlib/artist.py:1() 568 0.002 0.000 0.008 0.000 pandas/core/dtypes/missing.py:235(_isna_string_dtype) 33/1 0.000 0.000 0.008 0.008 jinja2/parser.py:887(subparse) 61 0.000 0.000 0.008 0.000 pandas/core/indexes/period.py:158(__new__) 81 0.000 0.000 0.008 0.000 pandas/core/generic.py:11489(logical_func) 1 0.000 0.000 0.008 0.008 xlwt/Row.py:3() 1 0.000 0.000 0.008 0.008 pandas/tests/extension/base/reshaping.py:1() 1 0.000 0.000 0.008 0.008 pandas/core/dtypes/concat.py:3() 1 0.000 0.000 0.008 0.008 pandas/tests/extension/base/reshaping.py:12(BaseReshapingTests) 72 0.001 0.000 0.008 0.000 matplotlib/__init__.py:1488(_preprocess_data) 32/5 0.000 0.000 0.008 0.002 jinja2/parser.py:132(parse_statement) 24 0.000 0.000 0.008 0.000 inspect.py:1885(_signature_strip_non_python_syntax) 17/5 0.000 0.000 0.008 0.002 jinja2/parser.py:258(parse_block) 37 0.000 0.000 0.008 0.000 hypothesis/internal/reflection.py:600(deprecated_posargs) 9 0.000 0.000 0.008 0.001 pandas/core/indexes/base.py:5496(ensure_index_from_sequences) 307 0.004 0.000 0.008 0.000 numpy/core/numeric.py:2244(within_tol) 1 0.000 0.000 0.008 0.008 platform.py:10() 1 0.000 0.000 0.008 0.008 html5lib/_inputstream.py:1() 1 0.000 0.000 0.008 0.008 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:939(_initini) 1 0.000 0.000 0.008 0.008 matplotlib/lines.py:4() 32/5 0.000 0.000 0.008 0.002 jinja2/parser.py:160(parse_statements) 73 0.000 0.000 0.008 0.000 pandas/core/arrays/period.py:801(period_array) 1 0.000 0.000 0.008 0.008 hypothesis/internal/conjecture/shrinker.py:16() 15 0.000 0.000 0.008 0.001 pandas/core/arrays/categorical.py:443(_from_sequence) 1 0.000 0.000 0.008 0.008 matplotlib/backends/backend_agg.py:21() 1 0.000 0.000 0.008 0.008 numba/core/extending.py:1() 1275 0.004 0.000 0.008 0.000 enum.py:836(__and__) 24285 0.008 0.000 0.008 0.000 {method 'index' of 'list' objects} 1088 0.003 0.000 0.008 0.000 pkg_resources/_vendor/packaging/version.py:131(_legacy_cmpkey) 1 0.000 0.000 0.008 0.008 sqlalchemy/sql/schema.py:30() 1 0.000 0.000 0.008 0.008 pandas/tests/window/test_pairwise.py:1() 1 0.000 0.000 0.008 0.008 numpy/core/multiarray.py:7() 21 0.000 0.000 0.008 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:601(consider_conftest) 10895/10892 0.003 0.000 0.008 0.000 astropy/units/core.py:1998(__hash__) 1813 0.003 0.000 0.008 0.000 typing.py:113(_type_check) 6060 0.004 0.000 0.008 0.000 pandas/core/dtypes/common.py:422(is_timedelta64_dtype) 1 0.000 0.000 0.008 0.008 pandas/tests/window/test_pairwise.py:11(TestPairwise) 1 0.000 0.000 0.008 0.008 hypothesis/extra/numpy.py:16() 329 0.000 0.000 0.008 0.000 pkg_resources/__init__.py:1410(has_metadata) 2753 0.002 0.000 0.008 0.000 pandas/core/construction.py:338(extract_array) 101 0.000 0.000 0.008 0.000 pandas/util/_decorators.py:352(decorator) 1 0.000 0.000 0.008 0.008 xlwt/ExcelFormula.py:3() 1 0.000 0.000 0.008 0.008 scipy/spatial/transform/__init__.py:18() 2 0.000 0.000 0.008 0.004 pandas/util/_test_decorators.py:236(check_file_leaks) 1 0.000 0.000 0.008 0.008 pandas/tests/io/parser/test_na_values.py:4() 1 0.000 0.000 0.008 0.008 pandas/core/arrays/categorical.py:1() 1 0.000 0.000 0.008 0.008 pandas/tests/groupby/test_apply.py:1() 1 0.000 0.000 0.008 0.008 pandas/core/computation/api.py:3() 58236 0.008 0.000 0.008 0.000 inspect.py:2529(kind) 54 0.000 0.000 0.007 0.000 attr/_make.py:450(__init__) 805/802 0.001 0.000 0.007 0.000 numba/core/types/abstract.py:59(__call__) 19 0.000 0.000 0.007 0.000 pandas/core/indexes/api.py:161(union_indexes) 23407 0.007 0.000 0.007 0.000 :222(_verbose_message) 1 0.002 0.002 0.007 0.007 pandas/tests/tseries/offsets/test_offsets.py:920(TestBusinessHour) 1 0.000 0.000 0.007 0.007 pandas/tests/series/test_api.py:1() 1 0.000 0.000 0.007 0.007 pandas/core/indexes/datetimes.py:1() 1 0.000 0.000 0.007 0.007 matplotlib/textpath.py:1() 1 0.000 0.000 0.007 0.007 numpy/random/__init__.py:124() 1 0.000 0.000 0.007 0.007 pandas/core/window/rolling.py:4() 47 0.000 0.000 0.007 0.000 pandas/core/internals/construction.py:143(init_ndarray) 1 0.000 0.000 0.007 0.007 pandas/core/arrays/sparse/__init__.py:3() 1 0.000 0.000 0.007 0.007 pandas/core/nanops.py:1() 1 0.000 0.000 0.007 0.007 pandas/tests/frame/methods/test_drop.py:1() 10766 0.007 0.000 0.007 0.000 {method 'expandtabs' of 'str' objects} 424 0.001 0.000 0.007 0.000 pandas/core/internals/managers.py:120(__init__) 112 0.000 0.000 0.007 0.000 pkg_resources/__init__.py:1432(get_metadata_lines) 1 0.000 0.000 0.007 0.007 pandas/tests/series/test_api.py:30(TestSeriesMisc) 2540 0.004 0.000 0.007 0.000 inspect.py:642(getfile) 434 0.001 0.000 0.007 0.000 openpyxl/descriptors/__init__.py:9(__new__) 239 0.001 0.000 0.007 0.000 hypothesis/strategies/_internal/core.py:163(cached_strategy) 3575 0.002 0.000 0.007 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:364(classnamefilter) 40 0.001 0.000 0.007 0.000 pandas/core/arrays/period.py:957(_get_ordinal_range) 384 0.001 0.000 0.007 0.000 tokenize.py:487(_tokenize) 23929 0.007 0.000 0.007 0.000 {method 'replace' of 'str' objects} 11580 0.007 0.000 0.007 0.000 :1(__init__) 1432 0.003 0.000 0.007 0.000 pandas/core/internals/blocks.py:232(mgr_locs) 215 0.000 0.000 0.007 0.000 _strptime.py:574(_strptime_datetime) 1 0.000 0.000 0.007 0.007 pandas/tests/frame/methods/test_drop.py:62(TestDataFrameDrop) 1 0.000 0.000 0.007 0.007 pandas/tests/frame/test_join.py:1() 4039 0.002 0.000 0.007 0.000 numpy/core/_dtype.py:319(_name_includes_bit_suffix) 20 0.000 0.000 0.007 0.000 pandas/io/formats/format.py:968(_get_formatted_column_labels) 112 0.000 0.000 0.007 0.000 pkg_resources/__init__.py:1417(get_metadata) 1 0.000 0.000 0.007 0.007 pandas/tests/indexes/interval/test_astype.py:176(TestDatetimelikeSubtype) 424 0.001 0.000 0.007 0.000 typing.py:633(copy_with) 1 0.000 0.000 0.007 0.007 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1() 1 0.000 0.000 0.007 0.007 pandas/tests/util/test_assert_series_equal.py:1() 158 0.000 0.000 0.007 0.000 pandas/core/dtypes/missing.py:255(notna) 1 0.000 0.000 0.007 0.007 matplotlib/cm.py:52(_gen_cmap_d) 106 0.000 0.000 0.007 0.000 pandas/core/internals/managers.py:1770(_simple_blockify) 670 0.001 0.000 0.007 0.000 numpy/core/fromnumeric.py:2324(all) 54 0.000 0.000 0.007 0.000 attr/_make.py:308(_transform_attrs) 146 0.002 0.000 0.007 0.000 astropy/units/utils.py:36(_iter_unit_summary) 1 0.000 0.000 0.007 0.007 scipy/interpolate/interpolate.py:1() 1 0.000 0.000 0.007 0.007 pandas/tests/arithmetic/test_interval.py:1() 1 0.000 0.000 0.007 0.007 sqlalchemy/orm/descriptor_props.py:12() 15273 0.007 0.000 0.007 0.000 :1(__init__) 334 0.000 0.000 0.007 0.000 pandas/core/algorithms.py:255(_get_values_for_rank) 2068 0.003 0.000 0.007 0.000 openpyxl/descriptors/base.py:34(__init__) 1 0.000 0.000 0.007 0.007 hypothesis/internal/compat.py:16() 274 0.002 0.000 0.007 0.000 pandas/core/dtypes/cast.py:440(maybe_promote) 1 0.000 0.000 0.007 0.007 scipy/optimize/_root.py:7() 2232 0.003 0.000 0.007 0.000 pandas/_config/config.py:86(_get_single_key) 4582 0.003 0.000 0.007 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:685(_get_first_non_fixture_func) 20 0.002 0.000 0.007 0.000 sqlalchemy/util/langhelpers.py:1695(inject_param_text) 1 0.000 0.000 0.007 0.007 numpy/random/_pickle.py:1() 55 0.000 0.000 0.007 0.000 hypothesis/strategies/_internal/core.py:193(decorator) 1 0.000 0.000 0.007 0.007 scipy/sparse/linalg/isolve/__init__.py:1() 1 0.000 0.000 0.007 0.007 numba/core/codegen.py:264(_finalize_final_module) 4599/4581 0.003 0.000 0.007 0.000 {built-in method builtins.all} 1838 0.004 0.000 0.007 0.000 :438(_classify_pyc) 1 0.000 0.000 0.007 0.007 pandas/core/computation/eval.py:3() 1 0.000 0.000 0.007 0.007 pandas/tests/io/json/test_json_table_schema.py:102(TestTableSchemaType) 11429 0.006 0.000 0.007 0.000 pathlib.py:737(_cparts) 1 0.000 0.000 0.007 0.007 psutil/__init__.py:21() 1 0.000 0.000 0.007 0.007 astropy/constants/__init__.py:15() 1 0.000 0.000 0.007 0.007 pandas/tests/test_expressions.py:38(TestExpressions) 1 0.000 0.000 0.007 0.007 pandas/core/reshape/api.py:3() 1 0.000 0.000 0.007 0.007 scipy/spatial/transform/rotation.py:1() 2032 0.002 0.000 0.007 0.000 numba/core/typeconv/castgraph.py:39(insert) 18833 0.004 0.000 0.007 0.000 sre_parse.py:249(match) 1 0.000 0.000 0.007 0.007 pandas/tests/arithmetic/test_period.py:4() 1 0.000 0.000 0.007 0.007 pandas/tests/dtypes/test_inference.py:5() 1 0.000 0.000 0.007 0.007 pkg_resources/_vendor/packaging/specifiers.py:4() 1142 0.003 0.000 0.007 0.000 pandas/core/generic.py:5226(__setattr__) 46 0.002 0.000 0.007 0.000 enum.py:135(__new__) 21 0.000 0.000 0.007 0.000 email/feedparser.py:173(feed) 106 0.001 0.000 0.007 0.000 pandas/core/series.py:4144(_reduce) 1 0.000 0.000 0.007 0.007 pandas/tests/io/parser/test_parse_dates.py:4() 1 0.000 0.000 0.007 0.007 pkg_resources/_vendor/pyparsing.py:5399(pyparsing_common) 1 0.000 0.000 0.007 0.007 pandas/tests/frame/indexing/test_indexing.py:1() 25631 0.006 0.000 0.006 0.000 {method 'rpartition' of 'str' objects} 1 0.000 0.000 0.006 0.006 pandas/tests/frame/indexing/test_indexing.py:34(TestDataFrameIndexing) 1 0.000 0.000 0.006 0.006 numba/core/codegen.py:513(_finalize_specific) 1 0.000 0.000 0.006 0.006 sqlalchemy/sql/elements.py:11() 1 0.000 0.000 0.006 0.006 pandas/tests/window/test_expanding.py:1() 2990 0.004 0.000 0.006 0.000 :58(__init__) 287 0.000 0.000 0.006 0.000 pandas/core/arrays/datetimelike.py:1762(maybe_infer_freq) 54 0.000 0.000 0.006 0.000 pandas/core/arrays/integer.py:133(integer_array) 1196 0.001 0.000 0.006 0.000 numpy/core/_ufunc_config.py:441(__enter__) 3108 0.002 0.000 0.006 0.000 pandas/core/dtypes/common.py:1296(is_float_dtype) 131 0.000 0.000 0.006 0.000 numba/core/extending.py:204(decorate) 1 0.000 0.000 0.006 0.006 matplotlib/axes/_base.py:1() 8 0.000 0.000 0.006 0.001 numba/core/typeconv/typeconv.py:99(promote_unsafe) 794 0.006 0.000 0.006 0.000 {built-in method posix.mkdir} 1 0.000 0.000 0.006 0.006 pandas/core/arrays/sparse/accessor.py:1() 21806 0.006 0.000 0.006 0.000 {method 'decode' of 'bytes' objects} 115 0.000 0.000 0.006 0.000 scipy/stats/_distn_infrastructure.py:587(__init__) 5 0.000 0.000 0.006 0.001 numba/core/codegen.py:575(wrapper) 1 0.000 0.000 0.006 0.006 scipy/spatial/transform/_rotation_groups.py:1() 1 0.000 0.000 0.006 0.006 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/junitxml.py:10() 1 0.000 0.000 0.006 0.006 llvmlite/binding/executionengine.py:90(finalize_object) 384 0.003 0.000 0.006 0.000 pandas/core/internals/managers.py:1801(_stack_arrays) 310 0.001 0.000 0.006 0.000 :1445(path_hook_for_FileFinder) 1 0.000 0.000 0.006 0.006 llvmlite/binding/analysis.py:3() 135 0.000 0.000 0.006 0.000 sqlalchemy/util/langhelpers.py:1665(_dedent_docstring) 1 0.000 0.000 0.006 0.006 openpyxl/chart/shapes.py:3() 6190 0.004 0.000 0.006 0.000 pandas/core/dtypes/common.py:1565(_get_dtype) 2 0.000 0.000 0.006 0.003 platform.py:1061(system) 5 0.000 0.000 0.006 0.001 platform.py:923(uname) 4518 0.006 0.000 0.006 0.000 {method 'search' of 're.Pattern' objects} 494 0.001 0.000 0.006 0.000 importlib_metadata/__init__.py:103(_from_config) 42 0.000 0.000 0.006 0.000 pandas/core/tools/datetimes.py:245(_convert_listlike_datetimes) 1 0.000 0.000 0.006 0.006 bottleneck/__init__.py:1() 1 0.000 0.000 0.006 0.006 yaml/reader.py:18() 53619 0.006 0.000 0.006 0.000 inspect.py:2521(default) 20 0.000 0.000 0.006 0.000 pandas/core/indexing.py:1663(isetter) 404 0.002 0.000 0.006 0.000 pandas/core/indexes/numeric.py:50(__new__) 1 0.000 0.000 0.006 0.006 pandas/tests/io/parser/test_usecols.py:4() 1 0.000 0.000 0.006 0.006 platform.py:780(_syscmd_uname) 1 0.000 0.000 0.006 0.006 yaml/reader.py:45(Reader) 325 0.000 0.000 0.006 0.000 typing.py:744(__getitem__) 30 0.000 0.000 0.006 0.000 pandas/core/arrays/sparse/array.py:277(__init__) 1 0.000 0.000 0.006 0.006 numpy/core/overrides.py:1() 41 0.000 0.000 0.006 0.000 sqlalchemy/util/deprecations.py:240(_decorate_with_warning) 1 0.000 0.000 0.006 0.006 chardet/mbcsgroupprober.py:30() 1 0.000 0.000 0.006 0.006 pandas/tests/tools/test_to_datetime.py:1() 54 0.000 0.000 0.006 0.000 pandas/core/arrays/integer.py:176(coerce_to_array) 51 0.000 0.000 0.006 0.000 pandas/core/arrays/integer.py:359(_from_sequence) 1 0.000 0.000 0.006 0.006 scipy/constants/__init__.py:317() 1 0.000 0.000 0.006 0.006 astropy/extern/configobj/validate.py:127() 1 0.000 0.000 0.006 0.006 PIL/Image.py:27() 36 0.000 0.000 0.006 0.000 email/feedparser.py:178(_call_parse) 2636 0.005 0.000 0.006 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/reports.py:340(__init__) 460 0.001 0.000 0.006 0.000 argparse.py:1328(add_argument) 941 0.001 0.000 0.006 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:759(_inject_setup_method_fixture) 3 0.000 0.000 0.006 0.002 pandas/core/frame.py:4327(set_index) 1 0.000 0.000 0.006 0.006 pandas/core/ops/__init__.py:5() 1 0.000 0.000 0.006 0.006 pandas/tests/indexing/test_loc.py:1() 47038 0.006 0.000 0.006 0.000 {built-in method builtins.callable} 1 0.000 0.000 0.006 0.006 scipy/sparse/csgraph/__init__.py:151() 28 0.001 0.000 0.006 0.000 pandas/core/indexes/multi.py:325(_verify_integrity) 315 0.001 0.000 0.006 0.000 pandas/core/dtypes/dtypes.py:589(update_dtype) 36 0.001 0.000 0.006 0.000 email/feedparser.py:218(_parsegen) 1629 0.002 0.000 0.006 0.000 numpy/__init__.py:211(__getattr__) 265 0.003 0.000 0.006 0.000 {built-in method builtins.eval} 12664 0.006 0.000 0.006 0.000 {method 'get' of 'mappingproxy' objects} 1 0.000 0.000 0.006 0.006 pandas/tests/indexing/test_loc.py:124(TestLoc2) 1 0.000 0.000 0.006 0.006 llvmlite/ir/__init__.py:3() 8107 0.004 0.000 0.006 0.000 :416(parent) 2990 0.004 0.000 0.006 0.000 :176(cb) 1915 0.003 0.000 0.006 0.000 pandas/core/dtypes/common.py:224(is_sparse) 1 0.000 0.000 0.006 0.006 llvmlite/binding/executionengine.py:1() 61230 0.006 0.000 0.006 0.000 {method 'clear' of 'dict' objects} 1 0.000 0.000 0.006 0.006 pandas/core/arrays/datetimes.py:1() 1 0.001 0.001 0.006 0.006 pandas/tests/arrays/test_datetimelike.py:1() 1 0.000 0.000 0.006 0.006 astropy/units/cgs.py:7() 7 0.000 0.000 0.006 0.001 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/nodes.py:356(_repr_failure_py) 1 0.000 0.000 0.006 0.006 numba/core/typing/typeof.py:1() 341 0.002 0.000 0.006 0.000 py/_path/local.py:16(map_as_list) 288 0.000 0.000 0.006 0.000 tokenize.py:147(_compile) 37 0.000 0.000 0.006 0.000 sqlalchemy/util/deprecations.py:80(decorate) 1 0.000 0.000 0.006 0.006 unittest/__init__.py:45() 411 0.000 0.000 0.006 0.000 _strptime.py:26(_getlang) 32 0.001 0.000 0.006 0.000 matplotlib/colors.py:782(from_list) 88 0.000 0.000 0.006 0.000 pandas/core/indexes/extension.py:214(__getitem__) 15 0.000 0.000 0.006 0.000 scipy/stats/_distn_infrastructure.py:2876(_construct_docstrings) 1 0.000 0.000 0.006 0.006 pandas/tests/indexes/interval/test_indexing.py:1() 1 0.000 0.000 0.006 0.006 numba/core/pythonapi.py:1() 11 0.000 0.000 0.006 0.001 numba/core/typeconv/castgraph.py:128(safe) 1 0.000 0.000 0.006 0.006 pandas/tests/arrays/categorical/test_indexing.py:1() 1 0.000 0.000 0.006 0.006 http/client.py:69() 13 0.003 0.000 0.006 0.000 pytz/tzfile.py:25(build_tzinfo) 277/271 0.001 0.000 0.006 0.000 typing.py:180(_subs_tvars) 17376 0.004 0.000 0.006 0.000 sre_parse.py:160(__len__) 1 0.000 0.000 0.006 0.006 pandas/tests/io/parser/test_header.py:4() 290 0.001 0.000 0.006 0.000 pandas/core/algorithms.py:1457(_get_take_nd_function) 3388 0.002 0.000 0.006 0.000 sre_compile.py:423(_simple) 795 0.000 0.000 0.006 0.000 llvmlite/binding/ffi.py:56(__getattr__) 719 0.001 0.000 0.006 0.000 matplotlib/colors.py:157(to_rgba) 134 0.000 0.000 0.006 0.000 sqlalchemy/util/langhelpers.py:160(_exec_code_in_env) 1 0.000 0.000 0.006 0.006 pandas/tests/series/test_apply.py:1() 1 0.000 0.000 0.006 0.006 pandas/tests/arrays/sparse/test_array.py:1() 297/295 0.000 0.000 0.006 0.000 astropy/units/quantity.py:752(unit) 2985 0.005 0.000 0.006 0.000 sre_compile.py:249(_compile_charset) 9/4 0.000 0.000 0.006 0.001 jinja2/parser.py:198(parse_for) 55 0.000 0.000 0.006 0.000 attr/_make.py:231(_make_attr_tuple_class) 101 0.000 0.000 0.005 0.000 pandas/util/_decorators.py:369() 1 0.000 0.000 0.005 0.005 pandas/core/indexes/interval.py:1() 1 0.000 0.000 0.005 0.005 pandas/tests/arrays/categorical/test_indexing.py:11(TestCategoricalIndexingWithFactor) 59 0.001 0.000 0.005 0.000 pandas/core/arrays/timedeltas.py:236(_generate_range) 923 0.001 0.000 0.005 0.000 {method 'any' of 'numpy.ndarray' objects} 1 0.000 0.000 0.005 0.005 openpyxl/styles/alignment.py:3() 1 0.000 0.000 0.005 0.005 pandas/tests/extension/test_categorical.py:15() 30174 0.005 0.000 0.005 0.000 {built-in method sys.getrecursionlimit} 1 0.000 0.000 0.005 0.005 numpy/core/shape_base.py:1() 112 0.001 0.000 0.005 0.000 pkg_resources/__init__.py:1616(_get) 1 0.000 0.000 0.005 0.005 numba/core/typing/npydecl.py:1() 1 0.000 0.000 0.005 0.005 numba/np/ufunc/__init__.py:3() 6448 0.005 0.000 0.005 0.000 pathlib.py:790(name) 1 0.000 0.000 0.005 0.005 pkg_resources/_vendor/packaging/specifiers.py:275(Specifier) 2319 0.002 0.000 0.005 0.000 pandas/core/dtypes/common.py:750(is_signed_integer_dtype) 19 0.000 0.000 0.005 0.000 astropy/constants/constant.py:161(_unit) 5/3 0.000 0.000 0.005 0.002 astropy/constants/constant.py:34(wrapper) 1 0.000 0.000 0.005 0.005 sqlalchemy/orm/query.py:20() 698 0.003 0.000 0.005 0.000 configparser.py:1237(__init__) 28687 0.005 0.000 0.005 0.000 _collections_abc.py:302(__subclasshook__) 3805 0.004 0.000 0.005 0.000 pathlib.py:746(__eq__) 4 0.000 0.000 0.005 0.001 pandas/core/ops/methods.py:160(_create_methods) 1 0.000 0.000 0.005 0.005 sqlalchemy/engine/interfaces.py:8() 9722 0.003 0.000 0.005 0.000 :859(__exit__) 4467 0.003 0.000 0.005 0.000 :62(_path_split) 1 0.000 0.000 0.005 0.005 pandas/tests/io/parser/test_mangle_dupes.py:5() 1 0.000 0.000 0.005 0.005 numba/typed/typedlist.py:10() 1 0.000 0.000 0.005 0.005 pandas/tests/arithmetic/test_timedelta64.py:3() 1 0.000 0.000 0.005 0.005 xlrd/__init__.py:4() 60 0.001 0.000 0.005 0.000 dateutil/parser/_parser.py:672(_parse) 893 0.002 0.000 0.005 0.000 pandas/core/indexes/range.py:136(_simple_new) 1 0.000 0.000 0.005 0.005 importlib_metadata/_compat.py:1() 1 0.000 0.000 0.005 0.005 pandas/tests/frame/methods/test_explode.py:1() 1 0.000 0.000 0.005 0.005 matplotlib/image.py:4() 1005 0.002 0.000 0.005 0.000 linecache.py:53(checkcache) 1 0.000 0.000 0.005 0.005 sqlalchemy/util/__init__.py:9() 30577 0.005 0.000 0.005 0.000 {built-in method builtins.id} 1 0.000 0.000 0.005 0.005 pandas/tests/io/parser/test_index_col.py:5() 1 0.000 0.000 0.005 0.005 pandas/tests/frame/indexing/test_get.py:1() 1 0.000 0.000 0.005 0.005 astropy/extern/configobj/configobj.py:16() 1 0.000 0.000 0.005 0.005 pandas/core/arrays/sparse/array.py:3() 1204 0.001 0.000 0.005 0.000 numpy/core/_methods.py:47(_all) 525 0.000 0.000 0.005 0.000 pandas/core/dtypes/common.py:1180(needs_i8_conversion) 19 0.000 0.000 0.005 0.000 astropy/units/format/generic.py:530(parse) 1 0.000 0.000 0.005 0.005 pandas/tests/frame/indexing/test_get.py:7(TestGet) 1 0.000 0.000 0.005 0.005 pandas/tests/plotting/test_converter.py:1() 2 0.000 0.000 0.005 0.003 pandas/tests/window/conftest.py:100(create_series) 13192 0.003 0.000 0.005 0.000 pandas/core/dtypes/common.py:180() 1008 0.000 0.000 0.005 0.000 numpy/core/_methods.py:44(_any) 1 0.000 0.000 0.005 0.005 astropy/units/core.py:6() 494 0.001 0.000 0.005 0.000 importlib_metadata/__init__.py:106() 245 0.002 0.000 0.005 0.000 {pandas._libs.lib.clean_index_list} 16214 0.005 0.000 0.005 0.000 pluggy/callers.py:58(force_result) 276 0.001 0.000 0.005 0.000 sqlalchemy/util/langhelpers.py:409(format_argspec_plus) 19 0.000 0.000 0.005 0.000 astropy/units/format/generic.py:561(_do_parse) 1 0.000 0.000 0.005 0.005 pandas/tests/tseries/offsets/test_offsets_properties.py:9() 7630 0.004 0.000 0.005 0.000 astropy/units/core.py:732(__hash__) 135 0.000 0.000 0.005 0.000 hypothesis/internal/reflection.py:456(source_exec_as_module) 6 0.000 0.000 0.005 0.001 pandas/_testing.py:1815(makeTimeSeries) 1 0.000 0.000 0.005 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_io/__init__.py:1() 441 0.000 0.000 0.005 0.000 pkg_resources/__init__.py:1407(_get_metadata_path) 1 0.000 0.000 0.005 0.005 pandas/_testing.py:1836(makeTimeDataFrame) 1 0.000 0.000 0.005 0.005 tables/description.py:13() 1 0.000 0.000 0.005 0.005 pandas/tests/arrays/interval/test_interval.py:1() 2 0.001 0.000 0.005 0.003 astropy/units/core.py:1216(filter_units) 1627 0.003 0.000 0.005 0.000 pandas/core/indexes/base.py:453(_simple_new) 1 0.000 0.000 0.005 0.005 pandas/tests/dtypes/test_generic.py:1() 1 0.000 0.000 0.005 0.005 pandas/tests/frame/methods/test_drop_duplicates.py:1() 1 0.000 0.000 0.005 0.005 pandas/tests/series/test_constructors.py:1() 50 0.000 0.000 0.005 0.000 openpyxl/styles/fonts.py:101(from_tree) 1554 0.002 0.000 0.005 0.000 numpy/core/numerictypes.py:365(issubdtype) 1 0.000 0.000 0.005 0.005 pandas/tests/series/indexing/test_indexing.py:1() 168 0.000 0.000 0.005 0.000 ctypes/__init__.py:374(__getattr__) 20 0.000 0.000 0.005 0.000 pandas/core/series.py:4004(apply) 526 0.002 0.000 0.005 0.000 pandas/core/dtypes/cast.py:1178(maybe_castable) 1 0.000 0.000 0.005 0.005 pandas/tests/reshape/merge/test_merge.py:1858(TestMergeOnIndexes) 1 0.000 0.000 0.005 0.005 xlwt/ExcelFormulaParser.py:3() 1 0.000 0.000 0.005 0.005 pandas/tests/series/test_constructors.py:32(TestSeriesConstructors) 33/18 0.000 0.000 0.005 0.000 jinja2/compiler.py:374(blockvisit) 1 0.000 0.000 0.005 0.005 pandas/tests/dtypes/test_generic.py:11(TestABCClasses) 436 0.000 0.000 0.005 0.000 jinja2/lexer.py:377(__next__) 1 0.001 0.001 0.005 0.005 pandas/tests/extension/test_categorical.py:157(TestCasting) 1 0.000 0.000 0.005 0.005 sqlalchemy/sql/selectable.py:12() 1 0.000 0.000 0.005 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/findpaths.py:159(determine_setup) 53 0.000 0.000 0.005 0.000 attr/_make.py:679(add_init) 1 0.000 0.000 0.005 0.005 numpy/matrixlib/__init__.py:3() 1 0.000 0.000 0.005 0.005 numba/np/numpy_support.py:1() 9 0.000 0.000 0.005 0.001 pandas/core/arrays/interval.py:424(from_tuples) 442 0.001 0.000 0.005 0.000 pkg_resources/__init__.py:1487(_fn) 1 0.000 0.000 0.005 0.005 matplotlib/axis.py:3() 764 0.000 0.000 0.005 0.000 pandas/_config/config.py:232(__call__) 364 0.005 0.000 0.005 0.000 numba/core/typing/templates.py:654(make_overload_template) 11879 0.005 0.000 0.005 0.000 pathlib.py:1029(_init) 1 0.000 0.000 0.005 0.005 pandas/tests/reshape/test_concat.py:1() 46 0.000 0.000 0.005 0.000 sqlalchemy/util/langhelpers.py:1021(__call__) 82 0.000 0.000 0.005 0.000 matplotlib/docstring.py:113(dedent_interpd) 1 0.000 0.000 0.005 0.005 tables/table.py:13() 1541 0.002 0.000 0.005 0.000 contextlib.py:237(helper) 1 0.000 0.000 0.005 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/findpaths.py:81(locate_config) 32 0.000 0.000 0.005 0.000 pandas/core/arrays/period.py:181(_from_sequence) 1 0.002 0.002 0.005 0.005 html5lib/serializer.py:1() 1196 0.001 0.000 0.005 0.000 numpy/core/_ufunc_config.py:446(__exit__) 77 0.001 0.000 0.005 0.000 soupsieve/css_parser.py:458(parse_attribute_selector) 1 0.000 0.000 0.005 0.005 hypothesis/internal/conjecture/shrinking/__init__.py:16() 5 0.000 0.000 0.005 0.001 sqlalchemy/util/langhelpers.py:1048(resolve_all) 1 0.000 0.000 0.005 0.005 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/_io/terminalwriter.py:1() 204 0.001 0.000 0.005 0.000 pandas/core/arrays/datetimes.py:2081(maybe_convert_dtype) 1 0.000 0.000 0.005 0.005 pandas/tests/dtypes/test_concat.py:1() 1 0.000 0.000 0.005 0.005 pandas/core/indexes/datetimelike.py:3() 597 0.002 0.000 0.005 0.000 inspect.py:1799(_signature_bound_method) 1 0.000 0.000 0.005 0.005 openpyxl/reader/workbook.py:3() 1 0.000 0.000 0.005 0.005 openpyxl/packaging/manifest.py:5() 53 0.000 0.000 0.005 0.000 attr/_make.py:1340(_make_init) 1 0.000 0.000 0.005 0.005 astropy/units/physical.py:10() 192 0.000 0.000 0.005 0.000 _strptime.py:568(_strptime_time) 2517 0.003 0.000 0.005 0.000 py/_path/local.py:1024(isimportable) 335 0.001 0.000 0.005 0.000 pandas/core/algorithms.py:272(_check_object_for_strings) 10751 0.004 0.000 0.005 0.000 sre_parse.py:286(tell) 1 0.000 0.000 0.005 0.005 openpyxl/descriptors/__init__.py:3() 1 0.000 0.000 0.005 0.005 pandas/tests/arithmetic/test_numeric.py:4() 23 0.000 0.000 0.005 0.000 sqlalchemy/util/langhelpers.py:1090(_resolve) 955 0.001 0.000 0.005 0.000 pandas/core/indexes/base.py:1822(is_object) 1 0.000 0.000 0.005 0.005 pandas/core/generic.py:162(NDFrame) 168 0.005 0.000 0.005 0.000 ctypes/__init__.py:381(__getitem__) 25 0.000 0.000 0.005 0.000 pandas/core/frame.py:8491(_reduce) 1 0.000 0.000 0.005 0.005 numpy/polynomial/__init__.py:15() 885 0.001 0.000 0.005 0.000 copy.py:66(copy) 1 0.000 0.000 0.005 0.005 pandas/tests/arrays/sparse/test_array.py:22(TestSparseArray) 696 0.001 0.000 0.005 0.000 py/_path/local.py:191(samefile) 8011 0.003 0.000 0.005 0.000 pandas/core/dtypes/inference.py:322(is_hashable) 372 0.001 0.000 0.005 0.000 pandas/core/internals/managers.py:317(_verify_integrity) 313 0.001 0.000 0.005 0.000 soupsieve/css_parser.py:1016(selector_iter) 37 0.000 0.000 0.005 0.000 pandas/core/generic.py:5483(astype) 8 0.000 0.000 0.005 0.001 pandas/core/indexes/interval.py:309(from_tuples) 7 0.000 0.000 0.005 0.001 pluggy/manager.py:41(project_name) 1 0.000 0.000 0.005 0.005 pyparsing.py:6381(pyparsing_common) 1 0.000 0.000 0.005 0.005 pandas/io/formats/format.py:4() 1 0.000 0.000 0.005 0.005 scipy/sparse/linalg/isolve/iterative.py:1() 36 0.000 0.000 0.005 0.000 matplotlib/__init__.py:1459(_add_data_doc) 1 0.000 0.000 0.005 0.005 sqlalchemy/sql/ddl.py:11() 1 0.000 0.000 0.005 0.005 pandas/tests/indexes/test_base.py:2228(TestMixedIntIndex) 153 0.000 0.000 0.005 0.000 typing.py:760(__getitem_inner__) 1 0.000 0.000 0.005 0.005 numba/np/ufunc/decorators.py:1() 1 0.000 0.000 0.005 0.005 matplotlib/mathtext.py:16() 40117 0.005 0.000 0.005 0.000 {method 'pop' of 'set' objects} 436 0.001 0.000 0.005 0.000 jinja2/lexer.py:618(wrap) 1 0.000 0.000 0.005 0.005 pandas/core/dtypes/dtypes.py:3() 1 0.000 0.000 0.005 0.005 pandas/core/internals/blocks.py:1() 32353 0.005 0.000 0.005 0.000 inspect.py:2835(parameters) 1391 0.001 0.000 0.005 0.000 pandas/core/indexes/base.py:1163(name) 1 0.000 0.000 0.005 0.005 pandas/tests/arithmetic/test_period.py:576(TestPeriodIndexArithmetic) 2 0.000 0.000 0.005 0.002 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/findpaths.py:32(load_config_dict_from_file) 1 0.000 0.000 0.004 0.004 numpy/matrixlib/defmatrix.py:1() 143 0.000 0.000 0.004 0.000 numba/core/extending.py:138(wrap) 34632 0.004 0.000 0.004 0.000 {method 'lower' of 'str' objects} 941 0.001 0.000 0.004 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:735(_inject_setup_class_fixture) 868 0.002 0.000 0.004 0.000 pandas/core/indexes/base.py:4062(__getitem__) 2 0.000 0.000 0.004 0.002 pandas/core/ops/methods.py:133(add_flex_arithmetic_methods) 1 0.000 0.000 0.004 0.004 astropy/extern/configobj/validate.py:472(Validator) 8 0.000 0.000 0.004 0.001 numba/core/typeconv/typeconv.py:87(unsafe) 1 0.000 0.000 0.004 0.004 pandas/plotting/_matplotlib/__init__.py:1() 3140 0.002 0.000 0.004 0.000 jinja2/nodes.py:155(iter_child_nodes) 1741 0.002 0.000 0.004 0.000 pandas/core/dtypes/common.py:696(is_integer_dtype) 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/test_get_dummies.py:1() 1180 0.001 0.000 0.004 0.000 pandas/core/dtypes/common.py:348(is_datetime64_dtype) 30 0.000 0.000 0.004 0.000 matplotlib/__init__.py:781(__init__) 306 0.000 0.000 0.004 0.000 pandas/core/generic.py:255(_validate_dtype) 54170 0.004 0.000 0.004 0.000 {built-in method builtins.divmod} 1 0.000 0.000 0.004 0.004 coverage/multiproc.py:4() 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/merge/test_merge.py:1382(TestMergeDtypes) 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/test_get_dummies.py:14(TestGetDummies) 1 0.000 0.000 0.004 0.004 pandas/core/frame.py:331(DataFrame) 1 0.000 0.000 0.004 0.004 bs4/builder/_htmlparser.py:2() 732 0.001 0.000 0.004 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:607(consider_module) 1 0.000 0.000 0.004 0.004 jinja2/lexer.py:6() 4762 0.002 0.000 0.004 0.000 pkg_resources/_vendor/packaging/version.py:114(_parse_version_parts) 55533 0.004 0.000 0.004 0.000 {built-in method builtins.chr} 1 0.000 0.000 0.004 0.004 doctest.py:46() 109 0.001 0.000 0.004 0.000 pandas/core/indexes/multi.py:709(_set_levels) 1 0.000 0.000 0.004 0.004 pandas/tests/arithmetic/test_datetime64.py:42(TestDatetime64ArrayLikeComparisons) 9/6 0.000 0.000 0.004 0.001 jinja2/compiler.py:1077(visit_For) 9722 0.003 0.000 0.004 0.000 :855(__enter__) 23 0.000 0.000 0.004 0.000 pandas/core/reshape/util.py:6(cartesian_product) 1 0.000 0.000 0.004 0.004 scipy/ndimage/filters.py:31() 10 0.000 0.000 0.004 0.000 astropy/utils/decorators.py:655(__get__) 204 0.000 0.000 0.004 0.000 configparser.py:830(items) 1 0.000 0.000 0.004 0.004 numba/core/codegen.py:141(_optimize_final_module) 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/test_cut.py:1() 1 0.000 0.000 0.004 0.004 astropy/extern/configobj/configobj.py:1069(ConfigObj) 91/84 0.000 0.000 0.004 0.000 py/_vendored_packages/apipkg.py:133(__makeattr) 4714 0.003 0.000 0.004 0.000 py/_path/local.py:368(_fastjoin) 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/test_melt.py:1() 1 0.000 0.000 0.004 0.004 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/__init__.py:1061(_checkversion) 2 0.000 0.000 0.004 0.002 numba/core/typeconv/typeconv.py:113(unsafe_unsafe) 1 0.000 0.000 0.004 0.004 scipy/constants/codata.py:51() 7122 0.002 0.000 0.004 0.000 typing.py:590(_is_dunder) 1186 0.001 0.000 0.004 0.000 <__array_function__ internals>:2(copyto) 1 0.000 0.000 0.004 0.004 matplotlib/font_manager.py:14() 1 0.000 0.000 0.004 0.004 numpy/linalg/__init__.py:71() 1 0.000 0.000 0.004 0.004 pandas/tests/dtypes/cast/test_infer_dtype.py:1() 1 0.000 0.000 0.004 0.004 pandas/tests/reductions/test_reductions.py:1122(TestSeriesMode) 1 0.000 0.000 0.004 0.004 numba/np/arrayobj.py:4() 357 0.002 0.000 0.004 0.000 pandas/core/indexes/base.py:1627(is_unique) 8/7 0.000 0.000 0.004 0.001 py/_vendored_packages/apipkg.py:68(importobj) 408 0.002 0.000 0.004 0.000 numpy/core/_asarray.py:223(require) 1 0.000 0.000 0.004 0.004 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/__init__.py:1() 78 0.001 0.000 0.004 0.000 traceback.py:318(extract) 143 0.000 0.000 0.004 0.000 numba/core/extending.py:121(register_jitable) 4244 0.002 0.000 0.004 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/mark/structures.py:37(istestfunc) 840 0.003 0.000 0.004 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/python.py:1073(_validate_ids) 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/test_melt.py:9(TestMelt) 509 0.000 0.000 0.004 0.000 pathlib.py:911(joinpath) 82 0.004 0.000 0.004 0.000 pandas/core/arrays/datetimes.py:2324(_maybe_localize_point) 1 0.000 0.000 0.004 0.004 multiprocessing/__init__.py:15() 1 0.000 0.000 0.004 0.004 pandas/core/groupby/ops.py:7() 32 0.000 0.000 0.004 0.000 pandas/core/indexing.py:586(_get_setitem_indexer) 1 0.000 0.000 0.004 0.004 astropy/units/format/__init__.py:5() 18 0.000 0.000 0.004 0.000 matplotlib/rcsetup.py:860(validate_cycler) 1 0.000 0.000 0.004 0.004 numpy/core/fromnumeric.py:3() 31 0.001 0.000 0.004 0.000 {pandas._libs.tslibs.period.extract_ordinals} 1 0.000 0.000 0.004 0.004 astropy/units/quantity.py:47(Conf) 149 0.003 0.000 0.004 0.000 {method 'factorize' of 'pandas._libs.hashtable.StringHashTable' objects} 50 0.000 0.000 0.004 0.000 sqlalchemy/util/langhelpers.py:165(public_factory) 15280 0.004 0.000 0.004 0.000 {built-in method from_iterable} 1 0.000 0.000 0.004 0.004 scipy/optimize/minpack.py:1() 5514 0.002 0.000 0.004 0.000 :51(_r_long) 1 0.000 0.000 0.004 0.004 openpyxl/chart/text.py:2() 50 0.000 0.000 0.004 0.000 traceback.py:200(extract_stack) 3551 0.003 0.000 0.004 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/store.py:92(__getitem__) 453 0.000 0.000 0.004 0.000 matplotlib/rcsetup.py:327(validate_color) 2 0.000 0.000 0.004 0.002 astropy/units/core.py:1016(_compose) 1 0.000 0.000 0.004 0.004 html5lib/_utils.py:1() 67 0.004 0.000 0.004 0.000 {pandas._libs.tslibs.tzconversion.tz_localize_to_utc} 371 0.002 0.000 0.004 0.000 matplotlib/colors.py:193(_to_rgba_no_colorcycle) 1 0.000 0.000 0.004 0.004 ssl.py:91() 71 0.000 0.000 0.004 0.000 pandas/core/internals/blocks.py:333(apply) 2921 0.002 0.000 0.004 0.000 pathlib.py:677(_from_parsed_parts) 1 0.000 0.000 0.004 0.004 pandas/tests/extension/test_common.py:1() 54 0.000 0.000 0.004 0.000 pandas/core/generic.py:1362(__invert__) 13 0.000 0.000 0.004 0.000 enum.py:633(_convert) 20 0.000 0.000 0.004 0.000 pandas/core/generic.py:5439(dtypes) 1 0.000 0.000 0.004 0.004 yaml/resolver.py:2() 1 0.000 0.000 0.004 0.004 pandas/conftest.py:377(_create_mi_with_dt64tz_level) 44 0.000 0.000 0.004 0.000 attr/_make.py:1168(_make_eq) 1838 0.002 0.000 0.004 0.000 :471(_validate_timestamp_pyc) 1 0.000 0.000 0.004 0.004 sqlalchemy/sql/sqltypes.py:10() 1 0.000 0.000 0.004 0.004 pandas/tests/indexes/interval/test_indexing.py:18(TestGetLoc) 1 0.000 0.000 0.004 0.004 numba/core/errors.py:3() 828 0.002 0.000 0.004 0.000 sqlalchemy/util/compat.py:313(inspect_formatargspec) 1 0.000 0.000 0.004 0.004 matplotlib/__init__.py:876(rc_params) 1 0.000 0.000 0.004 0.004 sqlalchemy/orm/relationships.py:15() 1 0.000 0.000 0.004 0.004 pandas/tests/series/test_ufunc.py:1() 42 0.000 0.000 0.004 0.000 attr/_make.py:695(add_eq) 1 0.000 0.000 0.004 0.004 pandas/core/internals/concat.py:1() 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/test_concat.py:763(TestAppend) 1 0.000 0.000 0.004 0.004 html/parser.py:1() 7841 0.003 0.000 0.004 0.000 attr/validators.py:30(__call__) 25 0.000 0.000 0.004 0.000 pandas/core/frame.py:4770(notna) 1 0.000 0.000 0.004 0.004 pandas/tests/arithmetic/test_numeric.py:41() 1 0.000 0.000 0.004 0.004 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/argparsing.py:128(parse_setoption) 286 0.001 0.000 0.004 0.000 numpy/core/overrides.py:72(verify_matching_signatures) 1 0.000 0.000 0.004 0.004 pandas/core/arrays/datetimelike.py:1() 690 0.001 0.000 0.004 0.000 inspect.py:2843(replace) 79 0.000 0.000 0.004 0.000 pandas/core/indexes/timedeltas.py:118(__new__) 1 0.000 0.000 0.004 0.004 openpyxl/workbook/_writer.py:3() 1 0.000 0.000 0.004 0.004 pandas/core/computation/engines.py:3() 7457 0.003 0.000 0.004 0.000 inspect.py:63(ismodule) 277 0.001 0.000 0.004 0.000 pandas/core/algorithms.py:178(_reconstruct_data) 3598 0.003 0.000 0.004 0.000 sre_parse.py:343(_escape) 1 0.000 0.000 0.004 0.004 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/config/argparsing.py:97(parse) 1 0.000 0.000 0.004 0.004 shutil.py:5() 1 0.000 0.000 0.004 0.004 llvmlite/binding/passmanagers.py:94(run) 1 0.000 0.000 0.004 0.004 pandas/tests/groupby/aggregate/test_aggregate.py:3() 1 0.000 0.000 0.004 0.004 numpy/ma/__init__.py:41() 1 0.000 0.000 0.004 0.004 scipy/sparse/base.py:1() 1 0.000 0.000 0.004 0.004 pandas/tests/io/test_parquet.py:1() 2/1 0.000 0.000 0.004 0.004 mimetypes.py:66(__init__) 53 0.000 0.000 0.004 0.000 pytest-5.4.1.dev462+g322190fd8-py3.7.egg/_pytest/terminal.py:411(rewrite) 1382 0.002 0.000 0.004 0.000 posixpath.py:144(basename) 1 0.000 0.000 0.004 0.004 pandas/plotting/__init__.py:57() 879 0.001 0.000 0.004 0.000 pandas/core/construction.py:575(is_empty_data) 1 0.000 0.000 0.004 0.004 matplotlib/backend_bases.py:33() 1 0.000 0.000 0.004 0.004 matplotlib/mathtext.py:2237(Parser) 20 0.000 0.000 0.004 0.000 pandas/io/formats/format.py:927(_format_col) 37 0.000 0.000 0.004 0.000 pandas/core/internals/managers.py:570(astype) 1 0.000 0.000 0.004 0.004 pandas/tests/extension/test_common.py:37(TestExtensionArrayDtype) 1 0.000 0.000 0.004 0.004 scipy/sparse/csr.py:1() 1945 0.001 0.000 0.004 0.000 pandas/core/dtypes/common.py:806(is_unsigned_integer_dtype) 1 0.000 0.000 0.004 0.004 numpy/linalg/linalg.py:10() 204 0.000 0.000 0.004 0.000 configparser.py:857() 1 0.000 0.000 0.004 0.004 pandas/tests/series/test_apply.py:202(TestSeriesAggregate) 4146 0.004 0.000 0.004 0.000 :369(__init__) 338 0.001 0.000 0.004 0.000 pandas/core/internals/blocks.py:2389(__init__) 212 0.000 0.000 0.004 0.000 astropy/units/core.py:1199(has_bases_in_common_with_equiv) 1 0.000 0.000 0.004 0.004 pandas/tests/io/test_pickle.py:12() 1 0.000 0.000 0.004 0.004 sqlalchemy/orm/attributes.py:15() 1 0.000 0.000 0.004 0.004 subprocess.py:42() 41 0.000 0.000 0.004 0.000 pandas/core/internals/blocks.py:508(astype) 149 0.000 0.000 0.004 0.000 numba/core/typing/templates.py:984(decorator) 182 0.000 0.000 0.004 0.000 pandas/core/dtypes/cast.py:1626(maybe_cast_to_integer_array) 167 0.000 0.000 0.004 0.000 linecache.py:15(getline) 1 0.000 0.000 0.004 0.004 pandas/tests/reshape/merge/test_merge.py:96(TestMerge) 1 0.000 0.000 0.004 0.004 multiprocessing/context.py:1() 25 0.000 0.000 0.004 0.000 importlib_metadata/__init__.py:416(children) 2743 0.004 0.000 0.004 0.000 numpy/core/_internal.py:830(npy_ctypes_check) 1 0.000 0.000 0.004 0.004 pandas/tests/frame/test_to_csv.py:1() ```
bluetech commented 4 years ago

@jbrockmendel Thanks for the stats. We're working on improving collection performance, I think that in every release you'd see it's a bit faster. In particular I've added pandas now as a benchmark for optimization. At this point isn't one thing that slows things down, just many small things.

I don't think the issue is actionable besides that, so I'll close it now.