docker-library / python

Docker Official Image packaging for Python
https://www.python.org/
MIT License
2.53k stars 1.06k forks source link

Docker WindowsServerCore running Django/Python extremely slow #342

Closed YAJeff closed 5 years ago

YAJeff commented 5 years ago

Running a python docker image based off of Windows Server Core-LTSC 2016. Within the application is a Django web api we've created.

Calls to routes that don't exist seem to work fine.

This application works perfectly fine and returns results in under 50ms when running locally on my machine (no docker container).

When calling my service and passing in 132KB of JSON data, the service completely hangs. We've found that reducing the amount of JSON sending in will allow the web api to respond successfully. But it still takes a couple of seconds to process the request.

Here's the command I'm using to build: docker build -t mysvc-1.0 .

Here's the command I'm using to run: docker run -it --rm --name vsvc -p 12000:8000 mysvc-1.0

Here's my dockerfile:

FROM python:3.6.6-windowsservercore-ltsc2016

ENV PYTHONUNBUFFERED 1

RUN mkdir TEMP

ENV PATH="C:/python/Scripts;C:/python;${PATH}"

RUN mkdir C:/app
WORKDIR C:/app
ADD ./ C:/app

# Update pip
RUN python -m pip install --upgrade pip

RUN pip install -r requirements.txt

RUN python manage.py makemigrations pharmid_app

RUN python manage.py migrate

EXPOSE 8000

CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]

I've tried setting the memory and CPU count, neither fixed the issue.

Am I missing something?

tao12345666333 commented 5 years ago

You can use The Python Profilers for debug your program's run time performance.

YAJeff commented 5 years ago

I will try this today. Not sure how to use it with Django, or inside of a container. But ok.

If there's anything that's obvious that stands out, would be helpful. As it is, it takes >2,500 times longer to process a request in a container vs running locally.

YAJeff commented 5 years ago

Interesting results. Anything that clearly stands out here to anyone? I'm not an expert on Django and am not sure why I'm seeing such long operations.

output ``` ncalls tottime percall cumtime percall filename:lineno(function) 634 0.002 0.000 0.002 0.000 :103(release) 488 0.000 0.000 0.000 0.000 :143(__init__) 488 0.001 0.000 0.009 0.000 :147(__enter__) 488 0.001 0.000 0.003 0.000 :151(__exit__) 634 0.003 0.000 0.007 0.000 :157(_get_module_lock) 499 0.001 0.000 0.002 0.000 :176(cb) 146 0.000 0.000 0.002 0.000 :194(_lock_unlock_module) 583/27 0.001 0.000 4.500 0.167 :211(_call_with_frames_removed) 3931 0.002 0.000 0.002 0.000 :222(_verbose_message) 16 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) 462 0.000 0.000 0.000 0.000 :307(__init__) 462 0.000 0.000 0.000 0.000 :311(__enter__) 462 0.002 0.000 0.003 0.000 :318(__exit__) 1848 0.001 0.000 0.001 0.000 :321() 433 0.001 0.000 0.001 0.000 :35(_new_module) 478 0.001 0.000 0.001 0.000 :369(__init__) 879 0.001 0.000 0.013 0.000 :403(cached) 665 0.001 0.000 0.001 0.000 :416(parent) 462 0.000 0.000 0.000 0.000 :424(has_location) 16 0.000 0.000 0.000 0.000 :433(spec_from_loader) 462 0.004 0.000 0.021 0.000 :504(_init_module_attrs) 462/460 0.002 0.000 0.112 0.000 :564(module_from_spec) 499 0.001 0.000 0.003 0.000 :58(__init__) 462/30 0.004 0.000 4.618 0.154 :651(_load_unlocked) 478 0.000 0.000 0.001 0.000 :707(find_spec) 16 0.000 0.000 0.001 0.000 :728(create_module) 16 0.000 0.000 0.000 0.000 :736(exec_module) 16 0.000 0.000 0.000 0.000 :753(is_package) 634 0.002 0.000 0.002 0.000 :78(acquire) 462 0.000 0.000 0.001 0.000 :780(find_spec) 1412 0.001 0.000 0.001 0.000 :843(__enter__) 1412 0.001 0.000 0.001 0.000 :847(__exit__) 10 0.000 0.000 0.000 0.000 :861(_find_spec_legacy) 478 0.006 0.000 1.668 0.003 :870(_find_spec) 41 0.000 0.000 0.000 0.000 :917(_sanity_check) 476/23 0.003 0.000 4.889 0.213 :936(_find_and_load_unlocked) 488/33 0.005 0.000 4.890 0.148 :966(_find_and_load) 41/33 0.000 0.000 1.593 0.048 :982(_gcd_import) 1638/687 0.002 0.000 2.602 0.004 :997(_handle_fromlist) 64 0.005 0.000 0.009 0.000 :1067(_path_hooks) 829 0.001 0.000 0.011 0.000 :1080(_path_importer_cache) 462 0.003 0.000 1.657 0.004 :1117(_get_spec) 462 0.001 0.000 1.658 0.004 :1149(find_spec) 69 0.001 0.000 0.001 0.000 :1196(__init__) 552 0.000 0.000 0.000 0.000 :1202() 450 0.003 0.000 0.007 0.000 :1228(_get_spec) 740 0.010 0.000 1.643 0.002 :1233(find_spec) 119 0.003 0.000 0.862 0.007 :1281(_fill_cache) 119 0.001 0.000 0.001 0.000 :1310() 72 0.000 0.000 0.005 0.000 :1322(path_hook_for_FileFinder) 866 0.005 0.000 0.016 0.000 :263(cache_from_source) 446 0.001 0.000 0.012 0.000 :361(_get_cached) 740 0.001 0.000 0.001 0.000 :37(_relax_case) 433 0.001 0.000 0.001 0.000 :393(_check_name_wrapper) 433 0.009 0.000 0.011 0.000 :430(_validate_bytecode_header) 433 0.002 0.000 0.070 0.000 :485(_compile_bytecode) 866 0.001 0.000 0.002 0.000 :52(_r_long) 450 0.003 0.000 0.004 0.000 :524(spec_from_file_location) 3723 0.005 0.000 0.014 0.000 :57(_path_join) 3723 0.004 0.000 0.007 0.000 :59() 866 0.004 0.000 0.006 0.000 :63(_path_split) 433 0.000 0.000 0.000 0.000 :669(create_module) 433/30 0.002 0.000 4.616 0.154 :672(exec_module) 433 0.006 0.000 2.610 0.006 :743(get_code) 1835 0.013 0.000 0.786 0.000 :75(_path_stat) 437 0.001 0.000 0.001 0.000 :800(__init__) 433 0.000 0.000 0.000 0.000 :825(get_filename) 433 2.348 0.005 2.481 0.006 :830(get_data) 433 0.001 0.000 0.035 0.000 :840(path_stats) 662 0.002 0.000 0.713 0.001 :85(_path_is_mode_type) 13 0.000 0.000 0.000 0.000 :908(__init__) 13 0.000 0.000 0.087 0.007 :919(create_module) 13 0.000 0.000 0.000 0.000 :927(exec_module) 590 0.001 0.000 0.710 0.001 :94(_path_isfile) 72 0.000 0.000 0.003 0.000 :99(_path_isdir) 1 0.000 0.000 0.000 0.000 :1() 4 0.000 0.000 0.000 0.000 :12(__new__) 1 0.000 0.000 0.000 0.000 :2() 1 0.000 0.000 0.000 0.000 :5(ArgInfo) 1 0.000 0.000 0.000 0.000 :5(ArgSpec) 1 0.000 0.000 0.000 0.000 :5(Arguments) 1 0.000 0.000 0.000 0.000 :5(Attribute) 1 0.000 0.000 0.000 0.000 :5(ClosureVars) 1 0.000 0.000 0.000 0.000 :5(DecimalTuple) 1 0.000 0.000 0.000 0.000 :5(DefaultVerifyPaths) 1 0.000 0.000 0.000 0.000 :5(DefragResult) 1 0.000 0.000 0.000 0.000 :5(DoneAndNotDoneFutures) 1 0.000 0.000 0.000 0.000 :5(FieldInfo) 1 0.000 0.000 0.000 0.000 :5(FrameInfo) 1 0.000 0.000 0.000 0.000 :5(FullArgSpec) 1 0.000 0.000 0.000 0.000 :5(GroupedResult) 1 0.000 0.000 0.000 0.000 :5(JoinInfo) 1 0.000 0.000 0.000 0.000 :5(Match) 1 0.000 0.000 0.000 0.000 :5(ParseResult) 1 0.000 0.000 0.000 0.000 :5(PathInfo) 1 0.000 0.000 0.000 0.000 :5(SelectorKey) 1 0.000 0.000 0.000 0.000 :5(SplitResult) 1 0.000 0.000 0.000 0.000 :5(TableInfo) 1 0.000 0.000 0.000 0.000 :5(TokenInfo) 1 0.000 0.000 0.000 0.000 :5(Traceback) 1 0.000 0.000 0.000 0.000 :5(_ASN1Object) 1 0.000 0.000 0.000 0.000 :5(_GroupTuple) 1 0.000 0.000 0.000 0.000 :5(_Instruction) 1 0.000 0.000 0.000 0.000 :5(uname_result) 1 0.000 0.000 0.000 0.000 :5(usage) 1 0.000 0.000 0.000 0.000 __future__.py:48() 1 0.000 0.000 0.000 0.000 __future__.py:78(_Feature) 9 0.000 0.000 0.000 0.000 __future__.py:79(__init__) 47 0.001 0.000 8.767 0.187 __init__.py:1() 1 0.000 0.000 0.016 0.016 __init__.py:10() 1 0.000 0.000 0.000 0.000 __init__.py:1009(FileHandler) 1 0.000 0.000 0.000 0.000 __init__.py:1038(CharField) 12 0.000 0.000 0.003 0.000 __init__.py:104(lazy_number) 11 0.000 0.000 0.001 0.000 __init__.py:1041(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:1078(_StderrHandler) 34/33 0.000 0.000 1.593 0.048 __init__.py:108(import_module) 1 0.000 0.000 0.000 0.000 __init__.py:1084(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:1100(CommaSeparatedIntegerField) 1 0.000 0.000 0.000 0.000 __init__.py:1102(PlaceHolder) 4 0.000 0.000 0.000 0.000 __init__.py:1108(__init__) 12 0.000 0.000 0.000 0.000 __init__.py:111(NumberAwareString) 2 0.000 0.000 0.000 0.000 __init__.py:1114(append) 1 0.000 0.000 0.000 0.000 __init__.py:1116(DateTimeCheckMixin) 1 0.000 0.000 0.000 0.000 __init__.py:1144(Manager) 1 0.000 0.000 0.000 0.000 __init__.py:1147(DateField) 1 0.000 0.000 0.000 0.000 __init__.py:1149(__init__) 5 0.000 0.000 0.000 0.000 __init__.py:1157(__init__) 14 0.000 0.000 0.000 0.000 __init__.py:1160(getLogger) 9 0.000 0.000 0.000 0.000 __init__.py:1211(_fixupParents) 1 0.000 0.000 0.000 0.000 __init__.py:1235(_fixupChildren) 1 0.000 0.000 0.000 0.000 __init__.py:1252(Logger) 7 0.000 0.000 0.000 0.000 __init__.py:1257(contribute_to_class) 10 0.000 0.000 0.000 0.000 __init__.py:1267(__init__) 2 0.000 0.000 0.000 0.000 __init__.py:1279(setLevel) 1 0.000 0.000 0.000 0.000 __init__.py:1289(DateTimeField) 54 0.001 0.000 0.002 0.000 __init__.py:134(__init__) 14 0.000 0.000 0.000 0.000 __init__.py:139(_check_size) 1 0.000 0.000 0.118 0.118 __init__.py:14() 1 0.000 0.000 0.000 0.000 __init__.py:142(is_overridden) 1 0.000 0.000 0.000 0.000 __init__.py:144(ManagementUtility) 1 0.000 0.000 0.000 0.000 __init__.py:1444(DecimalField) 12 0.000 0.000 0.003 0.000 __init__.py:145(ngettext_lazy) 3 0.000 0.000 0.000 0.000 __init__.py:1455(addHandler) 1 0.000 0.000 0.000 0.000 __init__.py:148(__init__) 1 0.000 0.000 0.038 0.038 __init__.py:15() 1 0.000 0.000 0.000 0.000 __init__.py:151(py_object) 1 0.000 0.000 0.000 0.000 __init__.py:152(UserSettingsHolder) 1 0.000 0.000 0.000 0.000 __init__.py:1575(RootLogger) 1 0.000 0.000 0.000 0.000 __init__.py:1581(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:1589(LoggerAdapter) 1 0.000 0.000 0.000 0.000 __init__.py:1592(DurationField) 1 0.000 0.000 0.000 0.000 __init__.py:160(c_short) 1 0.000 0.000 0.000 0.000 __init__.py:164(c_ushort) 1 0.000 0.000 0.000 0.000 __init__.py:165(override) 1 0.000 0.000 0.000 0.000 __init__.py:1654(EmailField) 1 0.000 0.000 0.000 0.000 __init__.py:1658(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:1679(FilePathField) 1 0.000 0.000 0.000 0.000 __init__.py:168(c_long) 1 0.000 0.000 1.403 1.403 __init__.py:17() 1 0.000 0.000 0.000 0.000 __init__.py:172(c_ulong) 16 0.000 0.000 0.000 0.000 __init__.py:172(make_simple_escaping_wrapper) 1 0.000 0.000 0.000 0.000 __init__.py:1743(FloatField) 1 0.000 0.000 0.000 0.000 __init__.py:1777(IntegerField) 1 0.000 0.000 0.000 0.000 __init__.py:183(dumps) 14 0.000 0.000 0.000 0.000 __init__.py:1837(getLogger) 1 0.000 0.000 0.000 0.000 __init__.py:1849(BigIntegerField) 1 0.000 0.000 0.000 0.000 __init__.py:1864(IPAddressField) 1 0.000 0.000 0.527 0.527 __init__.py:188(fetch_command) 1 0.000 0.000 0.000 0.000 __init__.py:189(c_float) 1 0.000 0.000 0.000 0.000 __init__.py:189(get_user_model) 1 0.000 0.000 0.000 0.000 __init__.py:1895(GenericIPAddressField) 57 0.000 0.000 0.000 0.000 __init__.py:19(__new__) 24 0.000 0.000 0.000 0.000 __init__.py:190(_checkLevel) 1 0.000 0.000 0.000 0.000 __init__.py:191(UTC) 1 0.000 0.000 0.000 0.000 __init__.py:193(c_double) 1 0.000 0.000 0.000 0.000 __init__.py:1965(NullHandler) 1 0.000 0.000 0.000 0.000 __init__.py:197(c_longdouble) 1 0.000 0.000 0.000 0.000 __init__.py:1975(NullBooleanField) 1 0.000 0.000 0.000 0.000 __init__.py:20(GenericViewError) 8 0.000 0.000 0.136 0.017 __init__.py:20(find_commands) 1 0.000 0.000 0.000 0.000 __init__.py:2025(PositiveIntegerRelDbTypeMixin) 1 0.000 0.000 0.000 0.000 __init__.py:2042(PositiveIntegerField) 1 0.000 0.000 0.000 0.000 __init__.py:2054(PositiveSmallIntegerField) 1 0.000 0.000 0.000 0.000 __init__.py:2066(SlugField) 1 0.000 0.000 0.000 0.000 __init__.py:207(c_longlong) 1 0.000 0.000 0.000 0.000 __init__.py:2097(SmallIntegerField) 1 0.000 0.000 0.000 0.000 __init__.py:2104(TextField) 1 0.000 0.000 0.000 0.000 __init__.py:211(c_ulonglong) 1 0.000 0.000 0.000 0.000 __init__.py:2130(TimeField) 1 0.000 0.000 0.000 0.000 __init__.py:2140(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:218(_MagicFormatMapping) 1 0.000 0.000 0.000 0.000 __init__.py:218(c_ubyte) 25 0.000 0.000 0.000 0.000 __init__.py:219(_acquireLock) 1 0.000 0.000 0.000 0.000 __init__.py:219(autocomplete) 37 0.000 0.000 0.000 0.000 __init__.py:22() 1 0.000 0.000 0.000 0.000 __init__.py:22(LazySettings) 1 0.000 0.000 0.000 0.000 __init__.py:225(c_byte) 1 0.000 0.000 0.000 0.000 __init__.py:2261(URLField) 25 0.000 0.000 0.000 0.000 __init__.py:228(_releaseLock) 1 0.000 0.000 0.000 0.000 __init__.py:2285(BinaryField) 2 0.000 0.000 0.019 0.010 __init__.py:23() 1 0.000 0.000 0.000 0.000 __init__.py:230(c_char) 1 0.000 0.000 0.000 0.000 __init__.py:2331(UUIDField) 1 0.000 0.000 0.000 0.000 __init__.py:235(c_char_p) 1 0.000 0.000 0.000 0.000 __init__.py:239(LogRecord) 1 0.000 0.000 0.001 0.001 __init__.py:24() 1 0.000 0.000 0.000 0.000 __init__.py:241(c_void_p) 1 0.000 0.000 0.000 0.000 __init__.py:246(c_bool) 1 0.000 0.000 0.000 0.000 __init__.py:250(EscapeFormatter) 1 0.000 0.000 0.000 0.000 __init__.py:251(c_wchar_p) 1 0.000 0.000 0.000 0.000 __init__.py:256(c_wchar) 1 0.000 0.000 0.000 0.000 __init__.py:259(_reset_cache) 8 0.000 0.000 0.135 0.017 __init__.py:26() 1 0.000 0.000 0.000 0.000 __init__.py:26(DefaultConnectionProxy) 1 0.000 0.000 0.000 0.000 __init__.py:26(Markup) 1 0.000 0.000 0.544 0.544 __init__.py:28() 1 0.000 0.000 0.000 0.000 __init__.py:28(TranslatorCommentWarning) 1 0.000 0.000 0.037 0.037 __init__.py:28(_setup) 1 0.000 0.000 0.000 0.000 __init__.py:282(_MarkupEscapeHelper) 1 0.000 0.000 0.000 0.000 __init__.py:287(_CountryTimezoneDict) 1 0.000 0.000 573.400 573.400 __init__.py:293(execute) 5 0.000 0.000 1.067 0.213 __init__.py:3() 1 0.000 0.000 0.392 0.392 __init__.py:30(load_command_class) 1 0.000 0.000 0.000 0.000 __init__.py:311(CDLL) 11 0.000 0.000 0.231 0.021 __init__.py:32(__getattr__) 4 0.000 0.000 0.000 0.000 __init__.py:332(__init__) 4 0.000 0.000 0.000 0.000 __init__.py:342(_FuncPtr) 1 0.000 0.000 0.000 0.000 __init__.py:345(_CountryNameDict) 27 0.001 0.000 0.017 0.001 __init__.py:357(namedtuple) 5 0.000 0.000 0.000 0.000 __init__.py:358(__getattr__) 1 0.000 0.000 0.000 0.000 __init__.py:36(BadSerializer) 5 0.000 0.000 0.000 0.000 __init__.py:365(__getitem__) 1 0.000 0.000 573.400 573.400 __init__.py:368(execute_from_command_line) 1 0.000 0.000 0.000 0.000 __init__.py:370(_FixedOffset) 1 0.000 0.000 0.000 0.000 __init__.py:371(PyDLL) 1 0.000 0.000 0.000 0.000 __init__.py:378(PercentStyle) 1 0.000 0.000 0.000 0.000 __init__.py:380(WinDLL) 2 0.000 0.000 0.000 0.000 __init__.py:384(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:389(HRESULT) 1 0.000 0.000 0.000 0.000 __init__.py:393(StrFormatStyle) 1 0.000 0.000 0.094 0.094 __init__.py:4() 1 0.000 0.000 0.122 0.122 __init__.py:40() 1 0.000 0.000 0.000 0.000 __init__.py:40(Trans) 1 0.000 0.000 0.136 0.136 __init__.py:40(get_commands) 1 0.000 0.000 0.000 0.000 __init__.py:402(OleDLL) 1 0.000 0.000 0.000 0.000 __init__.py:402(StringTemplateStyle) 1 0.000 0.000 0.000 0.000 __init__.py:411(LibraryLoader) 4 0.000 0.000 0.000 0.000 __init__.py:412(__init__) 2 0.000 0.000 0.000 0.000 __init__.py:415(__getattr__) 147 0.000 0.000 0.000 0.000 __init__.py:420() 147 0.000 0.000 0.000 0.000 __init__.py:422() 1 0.000 0.000 0.000 0.000 __init__.py:426(Formatter) 1 0.000 0.000 0.000 0.000 __init__.py:47(Empty) 2 0.000 0.000 0.000 0.000 __init__.py:470(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:472(__eq__) 3 0.000 0.000 0.000 0.000 __init__.py:476(PYFUNCTYPE) 3 0.000 0.000 0.000 0.000 __init__.py:477(CFunctionType) 68 0.000 0.000 0.000 0.000 __init__.py:478(__lt__) 20 0.000 0.000 0.000 0.000 __init__.py:487(__deepcopy__) 20 0.000 0.000 0.000 0.000 __init__.py:498(__copy__) 1 0.000 0.000 0.000 0.000 __init__.py:5() 1 0.000 0.000 0.000 0.000 __init__.py:5(HTTPStatus) 1 0.000 0.000 0.000 0.000 __init__.py:51(NOT_PROVIDED) 1 0.000 0.000 0.000 0.000 __init__.py:517(__init__) 14 0.000 0.000 0.071 0.005 __init__.py:53(__getattr__) 1 0.000 0.000 0.000 0.000 __init__.py:542(most_common) 11 0.000 0.000 0.000 0.000 __init__.py:545(validators) 1 0.000 0.000 0.000 0.000 __init__.py:58(CacheHandler) 1 0.000 0.000 0.000 0.000 __init__.py:586(update) 1 0.000 0.000 0.000 0.000 __init__.py:6(RenameContentType) 1 0.000 0.000 0.000 0.000 __init__.py:600(BufferingFormatter) 2 0.000 0.000 0.000 0.000 __init__.py:61(__setattr__) 1 0.000 0.000 0.000 0.000 __init__.py:63() 1 0.000 0.000 0.000 0.000 __init__.py:64(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:642(Filter) 2 0.000 0.000 0.000 0.000 __init__.py:653(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:679(Filterer) 14 0.000 0.000 0.000 0.000 __init__.py:684(__init__) 2 0.000 0.000 0.000 0.000 __init__.py:690(addFilter) 6 0.000 0.000 0.000 0.000 __init__.py:692(db_tablespace) 56 0.000 0.000 0.000 0.000 __init__.py:696(set_attributes_from_name) 2 0.000 0.000 0.059 0.030 __init__.py:7() 7 0.000 0.000 0.000 0.000 __init__.py:70() 56 0.000 0.000 0.001 0.000 __init__.py:704(contribute_to_class) 3 0.000 0.000 0.000 0.000 __init__.py:73(CFUNCTYPE) 49 0.000 0.000 0.000 0.000 __init__.py:734(get_attname) 49 0.000 0.000 0.000 0.000 __init__.py:737(get_attname_column) 1 0.000 0.000 0.329 0.329 __init__.py:75(_patch_async) 4 0.000 0.000 0.000 0.000 __init__.py:751(_addHandlerRef) 6 0.000 0.000 0.148 0.025 __init__.py:76(gettext) 1 0.000 0.000 0.000 0.000 __init__.py:761(Handler) 4 0.000 0.000 0.000 0.000 __init__.py:770(__init__) 3 0.000 0.000 0.000 0.000 __init__.py:786(set_name) 4 0.000 0.000 0.000 0.000 __init__.py:799(createLock) 2 0.000 0.000 0.000 0.000 __init__.py:8() 1 0.000 0.000 3.586 3.586 __init__.py:8(setup) 3 0.000 0.000 0.000 0.000 __init__.py:822(setLevel) 1 0.000 0.000 0.000 0.000 __init__.py:869(setFormatter) 1 0.000 0.000 0.000 0.000 __init__.py:881(AutoField) 8 0.000 0.000 0.000 0.000 __init__.py:889(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:89(Field) 2 0.000 0.000 0.030 0.015 __init__.py:9() 12 0.000 0.000 0.000 0.000 __init__.py:90(configured) 1 0.000 0.000 0.000 0.000 __init__.py:91(DefaultCacheProxy) 8 0.000 0.000 0.000 0.000 __init__.py:949(contribute_to_class) 1 0.000 0.000 0.000 0.000 __init__.py:950(StreamHandler) 1 0.000 0.000 0.000 0.000 __init__.py:958(BigAutoField) 2 0.000 0.000 0.000 0.000 __init__.py:959(__init__) 1 0.000 0.000 0.000 0.000 __init__.py:96(Settings) 1 0.000 0.000 0.000 0.000 __init__.py:968(BooleanField) 1 0.000 0.000 0.027 0.027 __init__.py:97() 1 0.000 0.000 0.037 0.037 __init__.py:97(__init__) 4 0.000 0.000 0.000 0.000 __init__.py:975(__init__) 3 0.000 0.000 0.000 0.000 __init__.py:99(CFunctionType) 1 0.000 0.000 0.000 0.000 _base.py:108(_AllCompletedWaiter) 1 0.000 0.000 0.000 0.000 _base.py:138(_AcquireFutures) 1 0.000 0.000 0.000 0.000 _base.py:309(Future) 1 0.000 0.000 0.001 0.001 _base.py:4() 1 0.000 0.000 0.000 0.000 _base.py:44(Error) 1 0.000 0.000 0.000 0.000 _base.py:48(CancelledError) 1 0.000 0.000 0.000 0.000 _base.py:52(TimeoutError) 1 0.000 0.000 0.000 0.000 _base.py:536(Executor) 1 0.000 0.000 0.000 0.000 _base.py:56(_Waiter) 1 0.000 0.000 0.000 0.000 _base.py:71(_AsCompletedWaiter) 1 0.000 0.000 0.000 0.000 _base.py:93(_FirstCompletedWaiter) 2 0.000 0.000 0.000 0.000 _collections_abc.py:271(__subclasshook__) 8 0.000 0.000 0.000 0.000 _collections_abc.py:302(__subclasshook__) 2 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) 33 0.000 0.000 0.000 0.000 _collections_abc.py:392(__subclasshook__) 23 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) 5 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) 1 0.000 0.000 0.000 0.000 _collections_abc.py:672(keys) 1 0.000 0.000 0.000 0.000 _collections_abc.py:676(items) 2 0.000 0.000 0.000 0.000 _collections_abc.py:698(__init__) 36 0.000 0.000 0.000 0.000 _collections_abc.py:719(__iter__) 4 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) 36 0.000 0.000 0.000 0.000 _collections_abc.py:742(__iter__) 1 0.000 0.000 0.000 0.000 _collections_abc.py:816(clear) 1 0.000 0.000 0.000 0.000 _compat.py:10() 1 0.000 0.000 0.008 0.008 _compat.py:12() 11 0.000 0.000 0.000 0.000 _compat.py:17() 1 0.000 0.000 0.000 0.000 _compat.py:29() 2 0.000 0.000 0.000 0.000 _compat.py:85(with_metaclass) 2 0.000 0.000 0.000 0.000 _compat.py:90(metaclass) 2 0.000 0.000 0.000 0.000 _compat.py:91(__new__) 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() 86 0.000 0.000 0.000 0.000 _compat_pickle.py:167() 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() 1 0.000 0.000 0.000 0.000 _compression.py:1() 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) 1 0.000 0.000 0.000 0.000 _encoded_words.py:6() 1 0.000 0.000 0.000 0.000 _encoded_words.py:73(_QByteMap) 1 0.000 0.000 0.000 0.000 _endian.py:1() 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:103(TokenList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:170(WhiteSpaceTokenList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:181(UnstructuredTokenList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:186(Phrase) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:190(Word) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:195(CFWSList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:200(Atom) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:205(Token) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:211(EncodedWord) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:219(QuotedString) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:246(BareQuotedString) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:258(Comment) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:284(AddressList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:303(Address) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:328(MailboxList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:342(GroupList) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:359(Group) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:380(NameAddr) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:407(AngleAddr) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:441(ObsRoute) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:450(Mailbox) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:477(InvalidMailbox) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:488(Domain) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:498(DotAtom) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:503(DotAtomText) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:509(AddrSpec) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:542(ObsLocalPart) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:548(DisplayName) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:588(LocalPart) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:624(DomainLiteral) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:640(MIMEVersion) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:647(Parameter) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:675(InvalidParameter) 1 0.000 0.000 0.003 0.003 _header_value_parser.py:68() 1 0.000 0.000 0.000 0.000 _header_value_parser.py:680(Attribute) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:690(Section) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:696(Value) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:711(MimeParameters) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:797(ParameterizedHeaderValue) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:811(ContentType) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:819(ContentDisposition) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:826(ContentTransferEncoding) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:833(HeaderLabel) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:839(Header) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:848(Terminal) 3 0.000 0.000 0.000 0.000 _header_value_parser.py:854(__new__) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:891(WhiteSpaceTerminal) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:901(ValueTerminal) 1 0.000 0.000 0.000 0.000 _header_value_parser.py:911(EWWhiteSpaceTerminal) 1 0.000 0.000 0.000 0.000 _identifier.py:2() 1 0.000 0.000 0.000 0.000 _markupbase.py:23(ParserBase) 1 0.000 0.000 0.001 0.001 _markupbase.py:6() 1 0.000 0.000 0.000 0.000 _native.py:10() 1 0.000 0.000 0.000 0.000 _os.py:1() 1 0.000 0.000 0.000 0.000 _parseaddr.py:203(AddrlistClass) 1 0.000 0.000 0.000 0.000 _parseaddr.py:495(AddressList) 1 0.000 0.000 0.004 0.004 _parseaddr.py:7() 22 0.000 0.000 0.000 0.000 _policybase.py:104() 1 0.000 0.000 0.000 0.000 _policybase.py:112(Policy) 1 0.000 0.000 0.000 0.000 _policybase.py:18(_PolicyBase) 1 0.000 0.000 0.000 0.000 _policybase.py:271(Compat32) 1 0.000 0.000 0.062 0.062 _policybase.py:4() 2 0.000 0.000 0.000 0.000 _policybase.py:41(__init__) 4 0.000 0.000 0.000 0.000 _policybase.py:60(clone) 13 0.000 0.000 0.000 0.000 _policybase.py:94(_append_doc) 2 0.000 0.000 0.000 0.000 _policybase.py:99(_extend_docstrings) 53 0.000 0.000 0.000 0.000 _weakrefset.py:16(__init__) 53 0.000 0.000 0.000 0.000 _weakrefset.py:20(__enter__) 53 0.000 0.000 0.000 0.000 _weakrefset.py:26(__exit__) 144 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) 53 0.000 0.000 0.000 0.000 _weakrefset.py:52(_commit_removals) 73 0.000 0.000 0.000 0.000 _weakrefset.py:58(__iter__) 168 0.000 0.000 0.000 0.000 _weakrefset.py:70(__contains__) 62 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) 31 0.000 0.000 0.002 0.000 abc.py:132(__new__) 31 0.000 0.000 0.000 0.000 abc.py:135() 8 0.000 0.000 0.001 0.000 abc.py:151(register) 55 0.000 0.000 0.001 0.000 abc.py:180(__instancecheck__) 54/11 0.000 0.000 0.001 0.000 abc.py:196(__subclasscheck__) 51 0.000 0.000 0.000 0.000 abc.py:9(abstractmethod) 1 0.000 0.000 0.000 0.000 aggregates.py:109(Count) 1 0.000 0.000 0.000 0.000 aggregates.py:133(Max) 1 0.000 0.000 0.000 0.000 aggregates.py:138(Min) 1 0.000 0.000 0.000 0.000 aggregates.py:14(Aggregate) 1 0.000 0.000 0.000 0.000 aggregates.py:143(StdDev) 1 0.000 0.000 0.000 0.000 aggregates.py:156(Sum) 1 0.000 0.000 0.000 0.000 aggregates.py:170(Variance) 1 0.000 0.000 1.060 1.060 aggregates.py:3() 1 0.000 0.000 0.000 0.000 aggregates.py:89(Avg) 1 0.000 0.000 0.027 0.027 api.py:1() 1 0.000 0.000 0.000 0.000 api.py:12(MessageFailure) 7 0.000 0.000 0.245 0.035 apps.py:1() 1 0.000 0.000 0.000 0.000 apps.py:12(AuthConfig) 1 0.000 0.000 0.000 0.000 apps.py:12(ready) 1 0.000 0.000 0.000 0.000 apps.py:14(ContentTypesConfig) 1 0.000 0.000 0.000 0.000 apps.py:16(ready) 1 0.000 0.000 0.000 0.000 apps.py:18(ready) 1 0.000 0.000 0.000 0.000 apps.py:4(PharmidAppConfig) 1 0.000 0.000 0.000 0.000 apps.py:4(RestFrameworkConfig) 1 0.000 0.000 0.000 0.000 apps.py:5(MessagesConfig) 1 0.000 0.000 0.000 0.000 apps.py:5(SessionsConfig) 1 0.000 0.000 0.000 0.000 apps.py:7(StaticFilesConfig) 1 0.000 0.000 0.008 0.008 apps.py:8(ready) 1 0.000 0.000 0.000 0.000 argparse.py:1009(_HelpAction) 1 0.000 0.000 0.000 0.000 argparse.py:1011(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:1028(_VersionAction) 1 0.000 0.000 0.000 0.000 argparse.py:1030(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:1054(_SubParsersAction) 1 0.000 0.000 0.000 0.000 argparse.py:1056(_ChoicesPseudoAction) 1 0.000 0.000 0.000 0.000 argparse.py:109(_AttributeHolder) 1 0.000 0.000 0.000 0.000 argparse.py:1150(FileType) 1 0.000 0.000 0.000 0.000 argparse.py:1204(Namespace) 2 0.000 0.000 0.000 0.000 argparse.py:1211(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:1224(_ActionsContainer) 6 0.000 0.000 0.000 0.000 argparse.py:1226(__init__) 68 0.000 0.000 0.000 0.000 argparse.py:1278(register) 34 0.000 0.000 0.000 0.000 argparse.py:1282(_registry_get) 16 0.000 0.000 0.001 0.000 argparse.py:1307(add_argument) 4 0.000 0.000 0.000 0.000 argparse.py:1354(add_argument_group) 16 0.000 0.000 0.000 0.000 argparse.py:1364(_add_action) 2 0.000 0.000 0.000 0.000 argparse.py:1428(_get_positional_kwargs) 14 0.000 0.000 0.000 0.000 argparse.py:1444(_get_optional_kwargs) 16 0.000 0.000 0.000 0.000 argparse.py:1480(_pop_action_class) 6 0.000 0.000 0.000 0.000 argparse.py:1484(_get_handler) 16 0.000 0.000 0.000 0.000 argparse.py:1493(_check_conflict) 1 0.000 0.000 0.000 0.000 argparse.py:150(HelpFormatter) 1 0.000 0.000 0.000 0.000 argparse.py:1531(_ArgumentGroup) 4 0.000 0.000 0.000 0.000 argparse.py:1533(__init__) 16 0.000 0.000 0.000 0.000 argparse.py:1555(_add_action) 1 0.000 0.000 0.000 0.000 argparse.py:1565(_MutuallyExclusiveGroup) 16 0.000 0.000 0.000 0.000 argparse.py:157(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:1585(ArgumentParser) 2 0.000 0.000 0.001 0.000 argparse.py:1604(__init__) 2 0.000 0.000 0.000 0.000 argparse.py:1642(identity) 16 0.000 0.000 0.000 0.000 argparse.py:1713(_add_action) 2 0.000 0.000 0.000 0.000 argparse.py:1725(_get_positional_actions) 2 0.000 0.000 0.000 0.000 argparse.py:1726() 1 0.000 0.000 0.000 0.000 argparse.py:1733(parse_args) 2 0.000 0.000 0.001 0.000 argparse.py:1740(parse_known_args) 2 0.000 0.000 0.000 0.000 argparse.py:1775(_parse_known_args) 2 0.000 0.000 0.000 0.000 argparse.py:1822(take_action) 2 0.000 0.000 0.000 0.000 argparse.py:1920(consume_positionals) 1 0.000 0.000 0.000 0.000 argparse.py:200(_Section) 16 0.000 0.000 0.000 0.000 argparse.py:202(__init__) 2 0.000 0.000 0.000 0.000 argparse.py:2071(_match_arguments_partial) 2 0.000 0.000 0.000 0.000 argparse.py:2077() 2 0.000 0.000 0.000 0.000 argparse.py:2081() 2 0.000 0.000 0.000 0.000 argparse.py:2087(_parse_optional) 2 0.000 0.000 0.000 0.000 argparse.py:2190(_get_nargs_pattern) 2 0.000 0.000 0.000 0.000 argparse.py:2234(_get_values) 1 0.000 0.000 0.000 0.000 argparse.py:2279() 2 0.000 0.000 0.000 0.000 argparse.py:2286(_get_value) 2 0.000 0.000 0.000 0.000 argparse.py:2312(_check_value) 16 0.000 0.000 0.000 0.000 argparse.py:2352(_get_formatter) 16 0.000 0.000 0.000 0.000 argparse.py:564(_metavar_formatter) 1 0.000 0.000 0.000 0.000 argparse.py:568() 16 0.000 0.000 0.000 0.000 argparse.py:573(format) 16 0.000 0.000 0.000 0.000 argparse.py:580(_format_args) 9 0.000 0.000 0.000 0.000 argparse.py:595() 1 0.000 0.000 0.001 0.001 argparse.py:62() 1 0.000 0.000 0.000 0.000 argparse.py:641(RawDescriptionHelpFormatter) 1 0.000 0.000 0.000 0.000 argparse.py:652(RawTextHelpFormatter) 1 0.000 0.000 0.000 0.000 argparse.py:663(ArgumentDefaultsHelpFormatter) 1 0.000 0.000 0.000 0.000 argparse.py:680(MetavarTypeHelpFormatter) 1 0.000 0.000 0.000 0.000 argparse.py:713(ArgumentError) 1 0.000 0.000 0.000 0.000 argparse.py:733(ArgumentTypeError) 1 0.000 0.000 0.000 0.000 argparse.py:742(Action) 16 0.000 0.000 0.000 0.000 argparse.py:793(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:833(_StoreAction) 7 0.000 0.000 0.000 0.000 argparse.py:835(__init__) 2 0.000 0.000 0.000 0.000 argparse.py:864(__call__) 1 0.000 0.000 0.000 0.000 argparse.py:868(_StoreConstAction) 7 0.000 0.000 0.000 0.000 argparse.py:870(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:891(_StoreTrueAction) 4 0.000 0.000 0.000 0.000 argparse.py:893(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:908(_StoreFalseAction) 3 0.000 0.000 0.000 0.000 argparse.py:910(__init__) 1 0.000 0.000 0.000 0.000 argparse.py:925(_AppendAction) 1 0.000 0.000 0.000 0.000 argparse.py:962(_AppendConstAction) 1 0.000 0.000 0.000 0.000 argparse.py:988(_CountAction) 1 0.000 0.000 0.000 0.000 ast.py:229(NodeVisitor) 1 0.000 0.000 0.000 0.000 ast.py:26() 1 0.000 0.000 0.000 0.000 ast.py:266(NodeTransformer) 1 0.000 0.000 0.000 0.000 asyncfilters.py:1() 11 0.000 0.000 0.000 0.000 asyncfilters.py:27(dualfilter) 11 0.000 0.000 0.000 0.000 asyncfilters.py:55(asyncfiltervariant) 11 0.000 0.000 0.000 0.000 asyncfilters.py:56(decorator) 1 0.000 0.000 0.320 0.320 asyncsupport.py:11() 1 0.000 0.000 0.000 0.000 asyncsupport.py:123(wrap_default_module) 1 0.000 0.000 0.000 0.000 asyncsupport.py:141(patch_template) 1 0.000 0.000 0.000 0.000 asyncsupport.py:156(patch_runtime) 1 0.000 0.000 0.005 0.005 asyncsupport.py:163(patch_filters) 1 0.000 0.000 0.005 0.005 asyncsupport.py:169(patch_all) 1 0.000 0.000 0.000 0.000 asyncsupport.py:190(AsyncLoopContext) 1 0.000 0.000 0.000 0.000 asyncsupport.py:210(AsyncLoopContextIterator) 1 0.000 0.000 0.000 0.000 asyncsupport.py:43(wrap_generate_func) 1 0.000 0.000 0.000 0.000 asyncsupport.py:73(wrap_render_func) 1 0.000 0.000 0.000 0.000 asyncsupport.py:82(wrap_block_reference_call) 1 0.000 0.000 0.000 0.000 asyncsupport.py:99(wrap_macro_invoke) 2 0.000 0.000 0.000 0.000 autoreload.py:221(check_errors) 1 0.000 0.000 3.586 3.586 autoreload.py:222(wrapper) 1 0.000 0.000 569.246 569.246 autoreload.py:282(restart_with_reloader) 1 0.000 0.000 0.000 0.000 autoreload.py:284() 1 0.000 0.000 569.246 569.246 autoreload.py:292(python_reloader) 1 0.000 0.000 0.001 0.001 autoreload.py:31() 1 0.000 0.000 569.246 569.246 autoreload.py:310(main) 10 0.000 0.000 2.178 0.218 base.py:1() 1 0.000 0.000 0.000 0.000 base.py:100(set_script_prefix) 1 0.000 0.000 0.000 0.000 base.py:101(Greatest) 1 0.000 0.000 0.000 0.000 base.py:109(BaseCommand) 1 0.000 0.000 0.000 0.000 base.py:109(TemplateResponseMixin) 1 0.000 0.000 0.000 0.000 base.py:109(VariableDoesNotExist) 1 0.000 0.000 0.000 0.000 base.py:119(Origin) 9 0.000 0.000 0.000 0.000 base.py:121() 1 0.000 0.000 0.000 0.000 base.py:121(Least) 1 0.000 0.000 0.000 0.000 base.py:13(CacheKeyWarning) 9 0.000 0.000 0.000 0.000 base.py:130() 1 0.000 0.000 0.000 0.000 base.py:134(ContentFile) 1 0.000 0.000 0.000 0.000 base.py:14(SerializationError) 1 0.000 0.000 0.000 0.000 base.py:141(Length) 1 0.000 0.000 0.000 0.000 base.py:145(Template) 1 0.000 0.000 0.000 0.000 base.py:145(TemplateView) 1 0.000 0.000 0.000 0.000 base.py:15(BaseHandler) 1 0.000 0.000 0.000 0.000 base.py:15(MIMEBase) 1 0.000 0.000 0.000 0.000 base.py:151(Lower) 1 0.000 0.000 0.000 0.000 base.py:154(RedirectView) 1 0.000 0.000 0.000 0.000 base.py:155(Deserializer) 1 0.000 0.000 0.000 0.000 base.py:156(Now) 1 0.000 0.000 0.000 0.000 base.py:16(ContextMixin) 13 0.000 0.000 0.000 0.000 base.py:160() 1 0.000 0.000 0.000 0.000 base.py:167(StrIndex) 1 0.000 0.000 0.000 0.000 base.py:17(CommandError) 1 0.000 0.000 0.000 0.000 base.py:178(DeserializedObject) 1 0.000 0.000 0.000 0.000 base.py:181(Substr) 1 0.000 0.000 0.000 0.000 base.py:185(close) 1 0.000 0.000 0.000 0.000 base.py:19(DeserializationError) 1 0.000 0.000 0.000 0.000 base.py:205(Upper) 1 0.000 0.000 0.000 0.000 base.py:205(__init__) 1 0.000 0.000 0.000 0.000 base.py:214(get_version) 1 0.000 0.000 0.001 0.001 base.py:222(create_parser) 1 0.000 0.000 0.000 0.000 base.py:24(BaseDatabaseWrapper) 1 0.000 0.000 0.000 0.000 base.py:24(Coalesce) 1 0.000 0.000 569.248 569.248 base.py:271(run_from_argv) 1 0.000 0.000 0.000 0.000 base.py:276(close) 1 0.000 0.000 0.000 0.000 base.py:286(is_in_memory_db) 6 0.000 0.000 0.000 0.000 base.py:29(decoder) 1 0.000 0.000 0.000 0.000 base.py:292(Token) 1 0.000 0.000 0.000 0.000 base.py:293(SQLiteCursorWrapper) 13 0.000 0.000 0.000 0.000 base.py:298() 3 0.000 0.000 1.583 0.528 base.py:3() 1 0.000 0.000 569.246 569.246 base.py:307(execute) 1 0.000 0.000 0.000 0.000 base.py:31(ProgressBar) 1 0.000 0.000 0.000 0.000 base.py:31(View) 157/136 0.000 0.000 0.385 0.003 base.py:312(add_to_class) 9 0.000 0.000 0.001 0.000 base.py:319(_prepare) 1 0.000 0.000 0.000 0.000 base.py:32(SystemCheckError) 1 0.000 0.000 0.000 0.000 base.py:337(Lexer) 18 0.000 0.000 0.000 0.000 base.py:340() 14 0.000 0.000 0.000 0.000 base.py:347() 1 0.000 0.000 0.000 0.000 base.py:36(Deferred) 1 0.000 0.000 0.000 0.000 base.py:374(ModelStateFieldsCacheDescriptor) 1 0.000 0.000 0.000 0.000 base.py:382(ModelState) 1 0.000 0.000 0.000 0.000 base.py:387(DebugLexer) 1 0.000 0.000 0.000 0.000 base.py:39(CommandParser) 1 0.000 0.000 0.000 0.000 base.py:393(Model) 1 0.000 0.000 0.354 0.354 base.py:4() 1 0.000 0.000 0.000 0.000 base.py:4(Operation) 1 0.000 0.000 0.000 0.000 base.py:414(Parser) 2 0.000 0.000 0.001 0.000 base.py:45(__init__) 1 0.000 0.000 0.000 0.000 base.py:455(AppCommand) 1 0.000 0.000 0.000 0.000 base.py:46(__init__) 1 0.000 0.000 0.000 0.000 base.py:47(DatabaseWrapper) 18 0.000 0.000 0.000 0.000 base.py:47(subclass_exception) 1 0.000 0.000 0.000 0.000 base.py:48(ConcatPair) 1 0.000 0.000 0.000 0.000 base.py:49(parse_args) 1 0.000 0.000 0.000 0.000 base.py:491(LabelCommand) 1 0.000 0.000 0.011 0.011 base.py:5() 1 0.000 0.000 0.072 0.072 base.py:50() 1 0.000 0.000 0.000 0.000 base.py:50(BaseCache) 2 0.000 0.000 0.000 0.000 base.py:518(validate_thread_sharing) 1 0.000 0.000 0.000 0.000 base.py:54(Serializer) 1 0.000 0.000 0.000 0.000 base.py:615(FilterExpression) 2 0.000 0.000 0.000 0.000 base.py:63(handle_default_options) 1 0.000 0.000 0.000 0.000 base.py:7(Cast) 1 0.000 0.000 0.000 0.000 base.py:7(File) 1 0.000 0.000 0.000 0.000 base.py:71(ModelBase) 14/11 0.001 0.000 0.388 0.035 base.py:73(__new__) 1 0.000 0.000 0.000 0.000 base.py:732(Variable) 1 0.000 0.000 0.000 0.000 base.py:75(OutputWrapper) 1 0.000 0.000 0.000 0.000 base.py:77(Concat) 14 0.000 0.000 0.000 0.000 base.py:78() 3 0.000 0.000 0.000 0.000 base.py:83(style_func) 1 0.000 0.000 0.000 0.000 base.py:889(Node) 1 0.000 0.000 0.000 0.000 base.py:9(BaseEngine) 1 0.000 0.000 0.000 0.000 base.py:9(InvalidCacheBackendError) 1 0.000 0.000 0.000 0.000 base.py:9(SerializerDoesNotExist) 2 0.000 0.000 0.000 0.000 base.py:90(__init__) 1 0.000 0.000 0.000 0.000 base.py:934(NodeList) 6 0.000 0.000 0.000 0.000 base.py:95(__getattr__) 1 0.000 0.000 0.000 0.000 base.py:957(TextNode) 1 0.000 0.000 0.000 0.000 base.py:98(isatty) 1 0.000 0.000 0.000 0.000 base.py:984(VariableNode) 1 0.000 0.000 0.000 0.000 base64.py:3() 1 0.000 0.000 0.000 0.000 base64mime.py:25() 1 0.000 0.000 0.189 0.189 base_events.py:14() 1 0.000 0.000 0.000 0.000 base_events.py:187(Server) 1 0.000 0.000 0.000 0.000 base_events.py:234(BaseEventLoop) 1 0.000 0.000 0.000 0.000 base_futures.py:1() 1 0.000 0.000 0.000 0.000 base_futures.py:13(InvalidStateError) 1 0.000 0.000 0.000 0.000 base_session.py:26(AbstractBaseSession) 1 0.000 0.000 0.000 0.000 base_session.py:33(Meta) 1 0.000 0.000 0.001 0.001 base_session.py:4() 1 0.000 0.000 0.000 0.000 base_session.py:9(BaseSessionManager) 1 0.000 0.000 0.000 0.000 base_subprocess.py:1() 1 0.000 0.000 0.000 0.000 base_subprocess.py:12(BaseSubprocessTransport) 1 0.000 0.000 0.000 0.000 base_subprocess.py:262(WriteSubprocessPipeProto) 1 0.000 0.000 0.000 0.000 base_subprocess.py:289(ReadSubprocessPipeProto) 1 0.000 0.000 0.000 0.000 base_tasks.py:1() 1 0.000 0.000 0.000 0.000 base_user.py:16(BaseUserManager) 1 0.000 0.000 0.254 0.254 base_user.py:4() 1 0.000 0.000 0.000 0.000 base_user.py:47(AbstractBaseUser) 1 0.000 0.000 0.000 0.000 base_user.py:59(Meta) 1 0.000 0.000 0.000 0.000 baseconv.py:38() 1 0.000 0.000 0.000 0.000 baseconv.py:48(BaseConverter) 6 0.000 0.000 0.000 0.000 baseconv.py:51(__init__) 1 0.000 0.000 0.000 0.000 basehttp.py:57(WSGIServer) 1 0.000 0.000 0.000 0.000 basehttp.py:75(ThreadedWSGIServer) 1 0.000 0.000 0.247 0.247 basehttp.py:8() 1 0.000 0.000 0.000 0.000 basehttp.py:80(ServerHandler) 1 0.000 0.000 0.000 0.000 basehttp.py:89(WSGIRequestHandler) 1 0.000 0.000 0.000 0.000 bccache.py:117(BytecodeCache) 1 0.000 0.000 0.000 0.000 bccache.py:16() 1 0.000 0.000 0.000 0.000 bccache.py:195(FileSystemBytecodeCache) 1 0.000 0.000 0.000 0.000 bccache.py:291(MemcachedBytecodeCache) 1 0.000 0.000 0.000 0.000 bccache.py:60(Bucket) 1 0.000 0.000 0.000 0.000 bisect.py:1() 1 0.000 0.000 0.864 0.864 boundfield.py:1() 1 0.000 0.000 0.000 0.000 boundfield.py:16(BoundField) 1 0.000 0.000 0.000 0.000 boundfield.py:254(BoundWidget) 1 0.000 0.000 0.000 0.000 bz2.py:32(BZ2File) 1 0.000 0.000 0.007 0.007 bz2.py:5() 1 0.000 0.000 0.000 0.000 cache.py:18() 1 0.000 0.000 0.135 0.135 caches.py:1() 1 0.000 0.000 0.000 0.000 calendar.py:129(Calendar) 1 0.000 0.000 0.000 0.000 calendar.py:135(__init__) 1 0.000 0.000 0.000 0.000 calendar.py:141(setfirstweekday) 1 0.000 0.000 0.000 0.000 calendar.py:24(IllegalMonthError) 1 0.000 0.000 0.000 0.000 calendar.py:260(TextCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:31(IllegalWeekdayError) 1 0.000 0.000 0.000 0.000 calendar.py:377(HTMLCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:489(different_locale) 1 0.000 0.000 0.000 0.000 calendar.py:50(_localized_month) 1 0.000 0.000 0.000 0.000 calendar.py:501(LocaleTextCalendar) 1 0.000 0.000 0.000 0.000 calendar.py:52() 1 0.000 0.000 0.000 0.000 calendar.py:532(LocaleHTMLCalendar) 2 0.000 0.000 0.000 0.000 calendar.py:55(__init__) 1 0.000 0.000 0.000 0.000 calendar.py:6() 1 0.000 0.000 0.000 0.000 calendar.py:69(_localized_day) 1 0.000 0.000 0.000 0.000 calendar.py:72() 2 0.000 0.000 0.000 0.000 calendar.py:74(__init__) 1 0.000 0.000 0.171 0.171 cgi.py:16() 1 0.000 0.000 0.000 0.000 cgi.py:337(MiniFieldStorage) 1 0.000 0.000 0.000 0.000 cgi.py:362(FieldStorage) 1 0.000 0.000 0.000 0.000 charset.py:167(Charset) 4 0.000 0.000 0.000 0.000 charset.py:211(__init__) 1 0.000 0.000 0.007 0.007 charset.py:6() 4 0.000 0.000 0.035 0.009 checks.py:1() 2 0.000 0.000 0.008 0.004 client.py:1() 1 0.000 0.000 0.000 0.000 client.py:1(BaseDatabaseClient) 1 0.000 0.000 0.000 0.000 client.py:107() 1 0.000 0.000 0.000 0.000 client.py:1355(HTTPSConnection) 1 0.000 0.000 0.000 0.000 client.py:1411(HTTPException) 1 0.000 0.000 0.000 0.000 client.py:1416(NotConnected) 1 0.000 0.000 0.000 0.000 client.py:1419(InvalidURL) 1 0.000 0.000 0.000 0.000 client.py:1422(UnknownProtocol) 1 0.000 0.000 0.000 0.000 client.py:1427(UnknownTransferEncoding) 1 0.000 0.000 0.000 0.000 client.py:1430(UnimplementedFileMode) 1 0.000 0.000 0.000 0.000 client.py:1433(IncompleteRead) 1 0.000 0.000 0.000 0.000 client.py:1448(ImproperConnectionState) 1 0.000 0.000 0.000 0.000 client.py:1451(CannotSendRequest) 1 0.000 0.000 0.000 0.000 client.py:1454(CannotSendHeader) 1 0.000 0.000 0.000 0.000 client.py:1457(ResponseNotReady) 1 0.000 0.000 0.000 0.000 client.py:1460(BadStatusLine) 1 0.000 0.000 0.000 0.000 client.py:1467(LineTooLong) 1 0.000 0.000 0.000 0.000 client.py:1472(RemoteDisconnected) 1 0.000 0.000 0.000 0.000 client.py:164(HTTPMessage) 1 0.000 0.000 0.000 0.000 client.py:218(HTTPResponse) 1 0.000 0.000 0.000 0.000 client.py:6(DatabaseClient) 1 0.000 0.000 0.023 0.023 client.py:69() 1 0.000 0.000 0.000 0.000 client.py:7(__init__) 1 0.000 0.000 0.000 0.000 client.py:788(HTTPConnection) 3 0.000 0.000 0.000 0.000 color.py:12(supports_color) 1 0.000 0.000 0.000 0.000 color.py:27(Style) 1 0.000 0.000 0.017 0.017 color.py:3() 1 0.000 0.000 0.000 0.000 color.py:31(make_style) 1 0.000 0.000 0.000 0.000 color.py:61(no_style) 3 0.000 0.000 0.000 0.000 color.py:69(color_style) 1 0.000 0.000 0.000 0.000 compat.py:1() 1 0.000 0.000 0.020 0.020 compiler.py:10() 1 0.000 0.000 0.000 0.000 compiler.py:121(MacroRef) 1 0.000 0.000 0.000 0.000 compiler.py:130(Frame) 9 0.000 0.000 0.000 0.000 compiler.py:1471(binop) 3 0.000 0.000 0.000 0.000 compiler.py:1488(uaop) 1 0.000 0.000 0.000 0.000 compiler.py:192(VisitorExit) 1 0.000 0.000 0.000 0.000 compiler.py:196(DependencyFinderVisitor) 1 0.000 0.000 0.000 0.000 compiler.py:215(UndeclaredNameVisitor) 1 0.000 0.000 0.000 0.000 compiler.py:237(CompilerExit) 1 0.000 0.000 0.000 0.000 compiler.py:244(CodeGenerator) 20 0.000 0.000 0.000 0.000 compiler.py:63(optimizeconst) 1 0.000 0.000 0.000 0.000 conf.py:1() 1 0.000 0.000 0.010 0.010 config.py:1() 1 0.000 0.000 0.000 0.000 config.py:10(AppConfig) 7 0.000 0.000 0.000 0.000 config.py:13(__init__) 1 0.000 0.000 0.000 0.000 config.py:154(get_model) 1 0.000 0.000 0.000 0.000 config.py:164(_handle_existing_loggers) 7 0.000 0.000 0.480 0.069 config.py:191(import_models) 3 0.000 0.000 0.000 0.000 config.py:200(ready) 1 0.000 0.000 0.009 0.009 config.py:25() 2 0.000 0.000 0.000 0.000 config.py:274(valid_ident) 1 0.000 0.000 0.000 0.000 config.py:281(ConvertingMixin) 63 0.000 0.000 0.000 0.000 config.py:284(convert_with_key) 1 0.000 0.000 0.000 0.000 config.py:314(ConvertingDict) 24 0.000 0.000 0.000 0.000 config.py:317(__getitem__) 13 0.000 0.000 0.000 0.000 config.py:321(get) 26 0.000 0.000 0.000 0.000 config.py:325(pop) 1 0.000 0.000 0.000 0.000 config.py:329(ConvertingList) 1 0.000 0.000 0.000 0.000 config.py:339(ConvertingTuple) 1 0.000 0.000 0.001 0.001 config.py:346(BaseConfigurator) 1 0.000 0.000 0.000 0.000 config.py:366(__init__) 7 0.000 0.000 0.000 0.000 config.py:370(resolve) 63 0.000 0.000 0.000 0.000 config.py:431(convert) 4 0.000 0.000 0.000 0.000 config.py:459(configure_custom) 4 0.000 0.000 0.000 0.000 config.py:466() 1 0.000 0.000 0.000 0.000 config.py:479(DictConfigurator) 1 0.000 0.000 0.001 0.001 config.py:485(configure) 7 0.000 0.000 0.000 0.000 config.py:54(_path_from_module) 1 0.000 0.000 0.000 0.000 config.py:644(configure_formatter) 2 0.000 0.000 0.000 0.000 config.py:672(configure_filter) 2 0.000 0.000 0.000 0.000 config.py:681(add_filters) 3 0.000 0.000 0.000 0.000 config.py:689(configure_handler) 3 0.000 0.000 0.000 0.000 config.py:729() 2 0.000 0.000 0.000 0.000 config.py:752(add_handlers) 2 0.000 0.000 0.000 0.000 config.py:760(common_logger_config) 2 0.000 0.000 0.000 0.000 config.py:778(configure_logger) 1 0.000 0.000 0.001 0.001 config.py:793(dictConfig) 7 0.000 0.000 0.653 0.093 config.py:81(create) 1 0.000 0.000 0.011 0.011 connection.py:10() 1 0.000 0.000 0.000 0.000 connection.py:114(_ConnectionBase) 1 0.000 0.000 0.000 0.000 connection.py:268(PipeConnection) 1 0.000 0.000 0.000 0.000 connection.py:348(Connection) 1 0.000 0.000 0.000 0.000 connection.py:422(Listener) 1 0.000 0.000 0.000 0.000 connection.py:564(SocketListener) 1 0.000 0.000 0.000 0.000 connection.py:623(PipeListener) 1 0.000 0.000 0.000 0.000 connection.py:745(ConnectionWrapper) 1 0.000 0.000 0.000 0.000 connection.py:767(XmlListener) 2 0.000 0.000 0.000 0.000 constants.py:1() 2 0.000 0.000 0.000 0.000 constants.py:3() 1 0.000 0.000 0.000 0.000 contentmanager.py:1() 8 0.000 0.000 0.000 0.000 contentmanager.py:13(add_get_handler) 5 0.000 0.000 0.000 0.000 contentmanager.py:27(add_set_handler) 1 0.000 0.000 0.000 0.000 contentmanager.py:7(ContentManager) 1 0.000 0.000 0.000 0.000 contentmanager.py:9(__init__) 2 0.000 0.000 0.011 0.005 context.py:1() 1 0.000 0.000 0.000 0.000 context.py:13(ContextDict) 1 0.000 0.000 0.000 0.000 context.py:139(Context) 1 0.000 0.000 0.000 0.000 context.py:14(ProcessError) 1 0.000 0.000 0.000 0.000 context.py:17(BufferTooShort) 1 0.000 0.000 0.000 0.000 context.py:176(RenderContext) 1 0.000 0.000 0.000 0.000 context.py:20(TimeoutError) 1 0.000 0.000 0.000 0.000 context.py:202(reducer) 1 0.000 0.000 0.000 0.000 context.py:219(Process) 1 0.000 0.000 0.000 0.000 context.py:219(RequestContext) 1 0.000 0.000 0.000 0.000 context.py:225(DefaultContext) 1 0.000 0.000 0.000 0.000 context.py:228(__init__) 1 0.000 0.000 0.000 0.000 context.py:23(AuthenticationError) 37 0.000 0.000 0.000 0.000 context.py:264() 1 0.000 0.000 0.000 0.000 context.py:27(BaseContext) 1 0.000 0.000 0.000 0.000 context.py:30(BaseContext) 1 0.000 0.000 0.000 0.000 context.py:317(SpawnProcess) 1 0.000 0.000 0.000 0.000 context.py:324(SpawnContext) 1 0.000 0.000 0.000 0.000 context.py:8(ContextPopException) 7 0.000 0.000 0.000 0.000 contextlib.py:129(contextmanager) 1 0.000 0.000 0.008 0.008 converters.py:1() 1 0.000 0.000 0.000 0.000 converters.py:16(StringConverter) 1 0.000 0.000 0.000 0.000 converters.py:26(UUIDConverter) 1 0.000 0.000 0.000 0.000 converters.py:36(SlugConverter) 1 0.000 0.000 0.000 0.000 converters.py:40(PathConverter) 1 0.000 0.000 0.000 0.000 converters.py:6(IntConverter) 1 0.000 0.000 0.045 0.045 cookie.py:1() 1 0.000 0.000 0.008 0.008 cookies.py:127() 1 0.000 0.000 0.000 0.000 cookies.py:150(CookieError) 1 0.000 0.000 0.000 0.000 cookies.py:170() 1 0.000 0.000 0.000 0.000 cookies.py:259(Morsel) 1 0.000 0.000 0.000 0.000 cookies.py:485(BaseCookie) 1 0.000 0.000 0.000 0.000 cookies.py:625(SimpleCookie) 20 0.000 0.000 0.000 0.000 copy.py:132(deepcopy) 20 0.000 0.000 0.000 0.000 copy.py:252(_keep_alive) 15 0.000 0.000 0.000 0.000 copy.py:268(_reconstruct) 35 0.000 0.000 0.000 0.000 copy.py:66(copy) 15 0.000 0.000 0.000 0.000 copyreg.py:87(__newobj__) 7 0.000 0.000 0.000 0.000 copyreg.py:96(_slotnames) 1 0.000 0.000 0.028 0.028 coroutines.py:1() 55 0.000 0.000 0.001 0.000 coroutines.py:194(coroutine) 1 0.000 0.000 0.000 0.000 coroutines.py:57(has_yield_from_bug) 1 0.000 0.000 0.000 0.000 coroutines.py:58(MyGen) 1 0.000 0.000 0.000 0.000 coroutines.py:59(__init__) 1 0.000 0.000 0.000 0.000 coroutines.py:61(__iter__) 1 0.000 0.000 0.000 0.000 coroutines.py:63(__next__) 1 0.000 0.000 0.000 0.000 coroutines.py:65(send) 3 0.000 0.000 0.000 0.000 coroutines.py:68(yield_from_gen) 1 0.000 0.000 0.000 0.000 coroutines.py:88(CoroWrapper) 2 0.000 0.000 0.006 0.003 creation.py:1() 1 0.000 0.000 0.000 0.000 creation.py:11(is_in_memory_db) 1 0.000 0.000 0.000 0.000 creation.py:14(BaseDatabaseCreation) 1 0.000 0.000 0.000 0.000 creation.py:19(__init__) 1 0.000 0.000 0.000 0.000 creation.py:9(DatabaseCreation) 1 0.000 0.000 0.037 0.037 crypto.py:3() 1 0.000 0.000 0.000 0.000 csrf.py:1() 1 0.000 0.000 0.000 0.000 csrf.py:131(CsrfViewMiddleware) 1 0.000 0.000 0.005 0.005 csrf.py:6() 1 0.000 0.000 0.030 0.030 database.py:1() 1 0.000 0.000 0.000 0.000 datastructures.py:1() 1 0.000 0.000 0.000 0.000 datastructures.py:10(MultiJoin) 1 0.000 0.000 0.000 0.000 datastructures.py:142(BaseTable) 1 0.000 0.000 0.000 0.000 datastructures.py:218(ImmutableList) 1 0.000 0.000 0.000 0.000 datastructures.py:22(Empty) 19 0.000 0.000 0.000 0.000 datastructures.py:231(__new__) 1 0.000 0.000 0.000 0.000 datastructures.py:258(DictWrapper) 1 0.000 0.000 0.000 0.000 datastructures.py:26(Join) 1 0.000 0.000 0.000 0.000 datastructures.py:39(MultiValueDictKeyError) 1 0.000 0.000 0.000 0.000 datastructures.py:4() 1 0.000 0.000 0.000 0.000 datastructures.py:43(MultiValueDict) 1 0.000 0.000 0.000 0.000 datastructures.py:5(OrderedSet) 1 0.000 0.000 0.009 0.009 dateformat.py:12() 1 0.000 0.000 0.000 0.000 dateformat.py:210(DateFormat) 1 0.000 0.000 0.000 0.000 dateformat.py:28(Formatter) 1 0.000 0.000 0.000 0.000 dateformat.py:44(TimeFormat) 1 0.000 0.000 0.005 0.005 dateparse.py:1() 2 0.000 0.000 0.020 0.010 dates.py:1() 1 0.000 0.000 0.000 0.000 dates.py:120(DayMixin) 1 0.000 0.000 0.000 0.000 dates.py:166(WeekMixin) 1 0.000 0.000 0.000 0.000 dates.py:19(YearMixin) 1 0.000 0.000 0.000 0.000 dates.py:229(DateMixin) 1 0.000 0.000 0.000 0.000 dates.py:293(BaseDateListView) 1 0.000 0.000 0.000 0.000 dates.py:375(BaseArchiveIndexView) 1 0.000 0.000 0.000 0.000 dates.py:392(ArchiveIndexView) 1 0.000 0.000 0.000 0.000 dates.py:397(BaseYearArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:438(YearArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:443(BaseMonthArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:473(MonthArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:478(BaseWeekArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:512(WeekArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:517(BaseDayArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:548(DayArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:553(BaseTodayArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:561(TodayArchiveView) 1 0.000 0.000 0.000 0.000 dates.py:566(BaseDateDetailView) 1 0.000 0.000 0.000 0.000 dates.py:601(DateDetailView) 1 0.000 0.000 0.000 0.000 dates.py:68(MonthMixin) 1 0.000 0.000 0.001 0.001 datetime.py:1() 1 0.000 0.000 0.000 0.000 datetime.py:1023(time) 2 0.000 0.000 0.000 0.000 datetime.py:1048(__new__) 1 0.000 0.000 0.000 0.000 datetime.py:108(ExtractQuarter) 1 0.000 0.000 0.000 0.000 datetime.py:112(ExtractHour) 1 0.000 0.000 0.000 0.000 datetime.py:116(ExtractMinute) 1 0.000 0.000 0.000 0.000 datetime.py:120(ExtractSecond) 1 0.000 0.000 0.000 0.000 datetime.py:1360(datetime) 3 0.000 0.000 0.000 0.000 datetime.py:1368(__new__) 1 0.000 0.000 0.000 0.000 datetime.py:14(TimezoneMixin) 1 0.000 0.000 0.000 0.000 datetime.py:146(TruncBase) 1 0.000 0.000 0.000 0.000 datetime.py:1952(timezone) 3 0.000 0.000 0.000 0.000 datetime.py:1975(_create) 1 0.000 0.000 0.000 0.000 datetime.py:215(Trunc) 1 0.000 0.000 0.000 0.000 datetime.py:222(TruncYear) 1 0.000 0.000 0.000 0.000 datetime.py:226(TruncQuarter) 1 0.000 0.000 0.000 0.000 datetime.py:230(TruncMonth) 1 0.000 0.000 0.000 0.000 datetime.py:234(TruncDay) 1 0.000 0.000 0.000 0.000 datetime.py:238(TruncDate) 1 0.000 0.000 0.000 0.000 datetime.py:251(TruncTime) 35 0.000 0.000 0.000 0.000 datetime.py:261(_check_int_field) 1 0.000 0.000 0.000 0.000 datetime.py:264(TruncHour) 1 0.000 0.000 0.000 0.000 datetime.py:268(TruncMinute) 1 0.000 0.000 0.000 0.000 datetime.py:272(TruncSecond) 5 0.000 0.000 0.000 0.000 datetime.py:278(_check_date_fields) 5 0.000 0.000 0.000 0.000 datetime.py:291(_check_time_fields) 5 0.000 0.000 0.000 0.000 datetime.py:308(_check_tzinfo_arg) 1 0.000 0.000 0.000 0.000 datetime.py:31(Extract) 1 0.000 0.000 0.000 0.000 datetime.py:336(timedelta) 9 0.000 0.000 0.000 0.000 datetime.py:355(__new__) 3 0.000 0.000 0.000 0.000 datetime.py:40(_days_before_year) 5 0.000 0.000 0.000 0.000 datetime.py:45(_days_in_month) 1 0.000 0.000 0.001 0.001 datetime.py:5() 1 0.000 0.000 0.000 0.000 datetime.py:530(__neg__) 1 0.000 0.000 0.000 0.000 datetime.py:658(date) 2 0.000 0.000 0.000 0.000 datetime.py:688(__new__) 1 0.000 0.000 0.000 0.000 datetime.py:79(ExtractYear) 1 0.000 0.000 0.000 0.000 datetime.py:83(ExtractMonth) 1 0.000 0.000 0.000 0.000 datetime.py:87(ExtractDay) 1 0.000 0.000 0.000 0.000 datetime.py:91(ExtractWeek) 1 0.000 0.000 0.000 0.000 datetime.py:953(tzinfo) 1 0.000 0.000 0.000 0.000 datetime.py:99(ExtractWeekDay) 1 0.000 0.000 0.000 0.000 datetime_safe.py:10() 1 0.000 0.000 0.000 0.000 datetime_safe.py:17(date) 1 0.000 0.000 0.000 0.000 datetime_safe.py:22(datetime) 1 0.000 0.000 0.000 0.000 datetime_safe.py:36(time) 1 0.000 0.000 0.009 0.009 dbapi2.py:23() 1 0.000 0.000 0.000 0.000 dbapi2.py:50() 1 0.000 0.000 0.000 0.000 dbapi2.py:51() 1 0.000 0.000 0.000 0.000 dbapi2.py:56(register_adapters_and_converters) 1 0.000 0.000 0.000 0.000 ddl_references.py:106(ForeignKeyName) 1 0.000 0.000 0.000 0.000 ddl_references.py:140(Statement) 1 0.000 0.000 0.000 0.000 ddl_references.py:4() 1 0.000 0.000 0.000 0.000 ddl_references.py:41(Table) 1 0.000 0.000 0.000 0.000 ddl_references.py:59(TableColumns) 1 0.000 0.000 0.000 0.000 ddl_references.py:7(Reference) 1 0.000 0.000 0.000 0.000 ddl_references.py:76(Columns) 1 0.000 0.000 0.000 0.000 ddl_references.py:94(IndexName) 1 0.000 0.000 0.060 0.060 debug.py:1() 1 0.000 0.000 0.000 0.000 debug.py:109(ExceptionReporterFilter) 1 0.000 0.000 0.000 0.000 debug.py:125(SafeExceptionReporterFilter) 1 0.000 0.000 0.000 0.000 debug.py:244(ExceptionReporter) 1 0.000 0.000 0.000 0.000 debug.py:34(CallableSettingWrapper) 1 0.000 0.000 0.017 0.017 decimal.py:2() 1 0.000 0.000 0.007 0.007 decoder.py:2() 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) 1 0.000 0.000 0.000 0.000 decoder.py:253(JSONDecoder) 1 0.000 0.000 0.000 0.000 decoder.py:283(__init__) 1 0.000 0.000 0.000 0.000 deconstruct.py:1() 16 0.000 0.000 0.000 0.000 deconstruct.py:13(decorator) 34/20 0.000 0.000 0.000 0.000 deconstruct.py:14(__new__) 16 0.000 0.000 0.000 0.000 deconstruct.py:6(deconstructible) 1 0.000 0.000 0.000 0.000 decorators.py:1() 1 0.000 0.000 0.000 0.000 decorators.py:167(classproperty) 1 0.000 0.000 0.000 0.000 decorators.py:8(classonlymethod) 1 0.000 0.000 0.012 0.012 defaultfilters.py:1() 29 0.000 0.000 0.000 0.000 defaultfilters.py:35(stringfilter) 1 0.000 0.000 0.028 0.028 defaults.py:10() 17 0.000 0.000 0.000 0.000 defaults.py:56() 1 0.000 0.000 0.014 0.014 defaulttags.py:1() 1 0.000 0.000 0.000 0.000 defaulttags.py:104(FilterNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:115(FirstOfNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:132(ForNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:221(IfChangedNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:267(IfEqualNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:286(IfNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:29(AutoEscapeControlNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:319(LoremNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:340(RegroupNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:367(LoadNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:372(NowNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:388(ResetCycleNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:397(SpacelessNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:406(TemplateTagNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:424(URLNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:45(CommentNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:461(VerbatimNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:469(WidthRatioNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:50(CsrfTokenNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:502(WithNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:70(CycleNode) 1 0.000 0.000 0.000 0.000 defaulttags.py:871(TemplateLiteral) 1 0.000 0.000 0.000 0.000 defaulttags.py:883(TemplateIfParser) 1 0.000 0.000 0.000 0.000 defaulttags.py:95(DebugNode) 1 0.000 0.000 0.099 0.099 deletion.py:1() 1 0.000 0.000 0.000 0.000 deletion.py:63(Collector) 1 0.000 0.000 0.000 0.000 deletion.py:8(ProtectedError) 1 0.000 0.000 0.022 0.022 deprecation.py:1() 1 0.000 0.000 0.000 0.000 deprecation.py:16(warn_about_renamed_method) 1 0.000 0.000 0.000 0.000 deprecation.py:33(RenameMethodsBase) 1 0.000 0.000 0.000 0.000 deprecation.py:5(RemovedInDjango30Warning) 1 0.000 0.000 0.000 0.000 deprecation.py:76(DeprecationInstanceCheck) 1 0.000 0.000 0.000 0.000 deprecation.py:85(MiddlewareMixin) 1 0.000 0.000 0.000 0.000 deprecation.py:9(RemovedInDjango21Warning) 1 0.000 0.000 0.000 0.000 detail.py:1() 1 0.000 0.000 0.000 0.000 detail.py:102(BaseDetailView) 1 0.000 0.000 0.000 0.000 detail.py:110(SingleObjectTemplateResponseMixin) 1 0.000 0.000 0.000 0.000 detail.py:163(DetailView) 1 0.000 0.000 0.000 0.000 detail.py:8(SingleObjectMixin) 1 0.000 0.000 0.000 0.000 difflib.py:1707(HtmlDiff) 1 0.000 0.000 0.001 0.001 difflib.py:27() 1 0.000 0.000 0.000 0.000 difflib.py:43(SequenceMatcher) 1 0.000 0.000 0.000 0.000 difflib.py:751(Differ) 1 0.000 0.000 0.005 0.005 dis.py:1() 1 0.000 0.000 0.000 0.000 dis.py:178(Instruction) 1 0.000 0.000 0.000 0.000 dis.py:416(Bytecode) 1 0.000 0.000 0.005 0.005 dispatcher.py:1() 9 0.000 0.000 0.000 0.000 dispatcher.py:155(send) 1 0.000 0.000 0.000 0.000 dispatcher.py:19(Signal) 10 0.000 0.000 0.000 0.000 dispatcher.py:217(_clear_dead_receivers) 2 0.000 0.000 0.000 0.000 dispatcher.py:277(receiver) 18 0.000 0.000 0.000 0.000 dispatcher.py:28(__init__) 2 0.000 0.000 0.000 0.000 dispatcher.py:290(_decorator) 10 0.000 0.000 0.001 0.000 dispatcher.py:49(connect) 19 0.000 0.000 0.000 0.000 dispatcher.py:7(_make_id) 1 0.000 0.000 0.010 0.010 django.py:1() 1 0.000 0.000 0.000 0.000 django.py:14(DjangoTemplates) 1 0.000 0.000 0.000 0.000 django.py:48(Template) 1 0.000 0.000 0.000 0.000 duration.py:1() 1 0.000 0.000 0.000 0.000 edit.py:1() 1 0.000 0.000 0.000 0.000 edit.py:10(FormMixin) 1 0.000 0.000 0.000 0.000 edit.py:129(ProcessFormView) 1 0.000 0.000 0.000 0.000 edit.py:152(BaseFormView) 1 0.000 0.000 0.000 0.000 edit.py:156(FormView) 1 0.000 0.000 0.000 0.000 edit.py:160(BaseCreateView) 1 0.000 0.000 0.000 0.000 edit.py:175(CreateView) 1 0.000 0.000 0.000 0.000 edit.py:182(BaseUpdateView) 1 0.000 0.000 0.000 0.000 edit.py:197(UpdateView) 1 0.000 0.000 0.000 0.000 edit.py:202(DeletionMixin) 1 0.000 0.000 0.000 0.000 edit.py:228(BaseDeleteView) 1 0.000 0.000 0.000 0.000 edit.py:236(DeleteView) 1 0.000 0.000 0.000 0.000 edit.py:70(ModelFormMixin) 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) 1 0.000 0.000 0.000 0.000 encoder.py:182(encode) 1 0.000 0.000 0.001 0.001 encoder.py:2() 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) 1 0.000 0.000 0.002 0.002 encoders.py:5() 1 0.000 0.000 0.120 0.120 encoding.py:1() 1 0.000 0.000 0.000 0.000 encoding.py:11(DjangoUnicodeDecodeError) 1 0.000 0.000 0.000 0.000 encoding.py:157() 1 0.000 0.000 0.000 0.000 encoding.py:166() 1 0.000 0.000 0.000 0.000 encoding.py:255(get_system_encoding) 1 0.000 0.000 0.086 0.086 engine.py:1() 1 0.000 0.000 0.000 0.000 engine.py:13(Engine) 1 0.000 0.000 0.035 0.035 engine.py:20(__init__) 1 0.000 0.000 0.008 0.008 engine.py:87(get_template_builtins) 1 0.000 0.000 0.008 0.008 engine.py:88() 1 0.000 0.000 0.028 0.028 engine.py:90(get_template_libraries) 1 0.000 0.000 0.000 0.000 entities.py:1() 15 0.000 0.000 0.000 0.000 enum.py:114(__prepare__) 15 0.001 0.000 0.004 0.000 enum.py:124(__new__) 15 0.000 0.000 0.000 0.000 enum.py:135() 15 0.000 0.000 0.000 0.000 enum.py:160() 47 0.000 0.000 0.000 0.000 enum.py:179() 165 0.000 0.000 0.000 0.000 enum.py:20(_is_descriptor) 5197 0.003 0.000 0.010 0.000 enum.py:265(__call__) 203 0.000 0.000 0.000 0.000 enum.py:28(_is_dunder) 15 0.000 0.000 0.000 0.000 enum.py:310(__getattr__) 16 0.000 0.000 0.000 0.000 enum.py:335(__members__) 269 0.000 0.000 0.000 0.000 enum.py:351(__setattr__) 203 0.000 0.000 0.000 0.000 enum.py:36(_is_sunder) 12 0.000 0.000 0.004 0.000 enum.py:364(_create_) 42 0.000 0.000 0.000 0.000 enum.py:417(_get_mixins_) 1 0.000 0.000 0.000 0.000 enum.py:43(_make_class_unpicklable) 15 0.000 0.000 0.000 0.000 enum.py:462(_find_new_) 5185 0.003 0.000 0.004 0.000 enum.py:515(__new__) 231 0.000 0.000 0.000 0.000 enum.py:592(name) 11 0.000 0.000 0.000 0.000 enum.py:597(value) 12 0.000 0.000 0.005 0.000 enum.py:602(_convert) 12 0.000 0.000 0.001 0.000 enum.py:623() 101 0.000 0.000 0.000 0.000 enum.py:628() 15 0.000 0.000 0.000 0.000 enum.py:65(__init__) 203 0.001 0.000 0.001 0.000 enum.py:70(__setitem__) 11 0.000 0.000 0.001 0.000 enum.py:758(_missing_) 11 0.000 0.000 0.001 0.000 enum.py:765(_create_pseudo_member_) 254 0.000 0.000 0.002 0.000 enum.py:795(__or__) 2328 0.004 0.000 0.009 0.000 enum.py:801(__and__) 96 0.000 0.000 0.000 0.000 enum.py:820(_high_bit) 11 0.000 0.000 0.001 0.000 enum.py:837(_decompose) 1 0.000 0.000 0.000 0.000 enum.py:848() 10 0.000 0.000 0.000 0.000 enum.py:855() 35 0.000 0.000 0.000 0.000 enum.py:866() 122 0.000 0.000 0.000 0.000 enum.py:872(_power_of_two) 1 0.000 0.000 0.161 0.161 environment.py:10() 1 0.000 0.000 0.000 0.000 environment.py:113(Environment) 1 0.000 0.000 0.000 0.000 environment.py:1138(TemplateModule) 1 0.000 0.000 0.000 0.000 environment.py:1171(TemplateExpression) 1 0.000 0.000 0.000 0.000 environment.py:1190(TemplateStream) 1 0.000 0.000 0.000 0.000 environment.py:889(Template) 1 0.000 0.000 0.007 0.007 error.py:12() 1 0.000 0.000 0.000 0.000 error.py:19(URLError) 1 0.000 0.000 0.000 0.000 error.py:35(HTTPError) 1 0.000 0.000 0.000 0.000 error.py:73(ContentTooShortError) 1 0.000 0.000 0.000 0.000 errors.py:101(ObsoleteHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:104(NonASCIILocalPartDefect) 1 0.000 0.000 0.000 0.000 errors.py:12(MessageParseError) 1 0.000 0.000 0.000 0.000 errors.py:16(HeaderParseError) 1 0.000 0.000 0.000 0.000 errors.py:20(BoundaryError) 1 0.000 0.000 0.000 0.000 errors.py:24(MultipartConversionError) 1 0.000 0.000 0.000 0.000 errors.py:28(CharsetError) 1 0.000 0.000 0.000 0.000 errors.py:33(MessageDefect) 1 0.000 0.000 0.000 0.000 errors.py:41(NoBoundaryInMultipartDefect) 1 0.000 0.000 0.000 0.000 errors.py:44(StartBoundaryNotFoundDefect) 1 0.000 0.000 0.000 0.000 errors.py:47(CloseBoundaryNotFoundDefect) 1 0.000 0.000 0.000 0.000 errors.py:5() 1 0.000 0.000 0.000 0.000 errors.py:50(FirstHeaderLineIsContinuationDefect) 1 0.000 0.000 0.000 0.000 errors.py:53(MisplacedEnvelopeHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:56(MissingHeaderBodySeparatorDefect) 1 0.000 0.000 0.000 0.000 errors.py:61(MultipartInvariantViolationDefect) 1 0.000 0.000 0.000 0.000 errors.py:64(InvalidMultipartContentTransferEncodingDefect) 1 0.000 0.000 0.000 0.000 errors.py:67(UndecodableBytesDefect) 1 0.000 0.000 0.000 0.000 errors.py:70(InvalidBase64PaddingDefect) 1 0.000 0.000 0.000 0.000 errors.py:73(InvalidBase64CharactersDefect) 1 0.000 0.000 0.000 0.000 errors.py:78(HeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:8(MessageError) 1 0.000 0.000 0.000 0.000 errors.py:84(InvalidHeaderDefect) 1 0.000 0.000 0.000 0.000 errors.py:87(HeaderMissingRequiredValue) 1 0.000 0.000 0.000 0.000 errors.py:90(NonPrintableDefect) 1 0.000 0.000 0.000 0.000 events.py:1() 1 0.000 0.000 0.000 0.000 events.py:160(TimerHandle) 1 0.000 0.000 0.000 0.000 events.py:216(AbstractServer) 1 0.000 0.000 0.000 0.000 events.py:228(AbstractEventLoop) 1 0.000 0.000 0.000 0.000 events.py:535(AbstractEventLoopPolicy) 1 0.000 0.000 0.000 0.000 events.py:569(BaseDefaultEventLoopPolicy) 1 0.000 0.000 0.000 0.000 events.py:584(_Local) 1 0.000 0.000 0.000 0.000 events.py:631(_RunningLoop) 1 0.000 0.000 0.000 0.000 events.py:98(Handle) 1 0.000 0.000 0.000 0.000 exception.py:1() 2 0.000 0.000 2.013 1.007 exceptions.py:1() 1 0.000 0.000 0.000 0.000 exceptions.py:10() 1 0.000 0.000 0.000 0.000 exceptions.py:11(AppRegistryNotReady) 1 0.000 0.000 0.000 0.000 exceptions.py:11(UnknownTimeZoneError) 1 0.000 0.000 0.000 0.000 exceptions.py:119(TemplateAssertionError) 1 0.000 0.000 0.000 0.000 exceptions.py:127(TemplateRuntimeError) 1 0.000 0.000 0.000 0.000 exceptions.py:133(UndefinedError) 1 0.000 0.000 0.000 0.000 exceptions.py:137(SecurityError) 1 0.000 0.000 0.000 0.000 exceptions.py:14(CircularDependencyError) 1 0.000 0.000 0.000 0.000 exceptions.py:14(TemplateError) 1 0.000 0.000 0.000 0.000 exceptions.py:143(FilterArgumentError) 1 0.000 0.000 0.000 0.000 exceptions.py:16(ObjectDoesNotExist) 1 0.000 0.000 0.000 0.000 exceptions.py:181(EmptyResultSet) 1 0.000 0.000 0.000 0.000 exceptions.py:19(InconsistentMigrationHistory) 1 0.000 0.000 0.000 0.000 exceptions.py:21(MultipleObjectsReturned) 1 0.000 0.000 0.000 0.000 exceptions.py:24(InvalidBasesError) 1 0.000 0.000 0.000 0.000 exceptions.py:26(SuspiciousOperation) 1 0.000 0.000 0.000 0.000 exceptions.py:27(InvalidTimeError) 1 0.000 0.000 0.000 0.000 exceptions.py:29(IrreversibleError) 2 0.000 0.000 0.000 0.000 exceptions.py:3() 1 0.000 0.000 0.000 0.000 exceptions.py:30(SuspiciousMultipartForm) 1 0.000 0.000 0.000 0.000 exceptions.py:31(AmbiguousTimeError) 1 0.000 0.000 0.000 0.000 exceptions.py:34(NodeNotFoundError) 1 0.000 0.000 0.000 0.000 exceptions.py:35(SuspiciousFileOperation) 1 0.000 0.000 0.000 0.000 exceptions.py:38(TemplateSyntaxError) 1 0.000 0.000 0.000 0.000 exceptions.py:4(AmbiguityError) 1 0.000 0.000 0.000 0.000 exceptions.py:4(Resolver404) 1 0.000 0.000 0.000 0.000 exceptions.py:40(DisallowedHost) 1 0.000 0.000 0.000 0.000 exceptions.py:42(NonExistentTimeError) 1 0.000 0.000 0.000 0.000 exceptions.py:44(TemplateNotFound) 1 0.000 0.000 0.000 0.000 exceptions.py:45(DisallowedRedirect) 1 0.000 0.000 0.000 0.000 exceptions.py:49(MigrationSchemaMissing) 1 0.000 0.000 0.000 0.000 exceptions.py:50(TooManyFieldsSent) 1 0.000 0.000 0.000 0.000 exceptions.py:53(InvalidMigrationPlan) 1 0.000 0.000 0.000 0.000 exceptions.py:58(RequestDataTooBig) 1 0.000 0.000 0.000 0.000 exceptions.py:6() 1 0.000 0.000 0.000 0.000 exceptions.py:6(FieldDoesNotExist) 1 0.000 0.000 0.000 0.000 exceptions.py:64(TemplatesNotFound) 1 0.000 0.000 0.000 0.000 exceptions.py:66(PermissionDenied) 1 0.000 0.000 0.000 0.000 exceptions.py:71(ViewDoesNotExist) 1 0.000 0.000 0.000 0.000 exceptions.py:76(MiddlewareNotUsed) 1 0.000 0.000 0.000 0.000 exceptions.py:8(NoReverseMatch) 1 0.000 0.000 0.000 0.000 exceptions.py:80(TemplateSyntaxError) 1 0.000 0.000 0.000 0.000 exceptions.py:81(ImproperlyConfigured) 1 0.000 0.000 0.000 0.000 exceptions.py:86(FieldError) 1 0.000 0.000 0.000 0.000 exceptions.py:9(BadMigrationError) 1 0.000 0.000 0.000 0.000 exceptions.py:9(TemplateDoesNotExist) 1 0.000 0.000 0.000 0.000 exceptions.py:94(ValidationError) 1 0.000 0.000 1.050 1.050 expressions.py:1() 1 0.000 0.000 0.000 0.000 expressions.py:1059(Exists) 1 0.000 0.000 0.000 0.000 expressions.py:1091(OrderBy) 1 0.000 0.000 0.000 0.000 expressions.py:1167(Window) 1 0.000 0.000 0.000 0.000 expressions.py:1259(WindowFrame) 1 0.000 0.000 0.000 0.000 expressions.py:13(SQLiteNumericMixin) 1 0.000 0.000 0.000 0.000 expressions.py:1318(RowRange) 1 0.000 0.000 0.000 0.000 expressions.py:1325(ValueRange) 1 0.000 0.000 0.000 0.000 expressions.py:137(BaseExpression) 1 0.000 0.000 0.000 0.000 expressions.py:28(Combinable) 1 0.000 0.000 0.000 0.000 expressions.py:394(Expression) 1 0.000 0.000 0.000 0.000 expressions.py:399(CombinedExpression) 1 0.000 0.000 0.000 0.000 expressions.py:457(DurationExpression) 1 0.000 0.000 0.000 0.000 expressions.py:486(TemporalSubtraction) 1 0.000 0.000 0.000 0.000 expressions.py:499(F) 1 0.000 0.000 0.000 0.000 expressions.py:531(ResolvedOuterRef) 1 0.000 0.000 0.000 0.000 expressions.py:548(OuterRef) 1 0.000 0.000 0.000 0.000 expressions.py:558(Func) 1 0.000 0.000 0.000 0.000 expressions.py:633(Value) 1 0.000 0.000 0.000 0.000 expressions.py:677(DurationValue) 1 0.000 0.000 0.000 0.000 expressions.py:685(RawSQL) 1 0.000 0.000 0.000 0.000 expressions.py:708(Star) 1 0.000 0.000 0.000 0.000 expressions.py:716(Random) 1 0.000 0.000 0.000 0.000 expressions.py:726(Col) 1 0.000 0.000 0.000 0.000 expressions.py:757(Ref) 1 0.000 0.000 0.000 0.000 expressions.py:790(ExpressionList) 1 0.000 0.000 0.000 0.000 expressions.py:807(ExpressionWrapper) 1 0.000 0.000 0.000 0.000 expressions.py:830(When) 1 0.000 0.000 0.000 0.000 expressions.py:887(Case) 1 0.000 0.000 0.000 0.000 expressions.py:965(Subquery) 2 0.000 0.000 0.006 0.003 features.py:1() 1 0.000 0.000 0.000 0.000 features.py:256(__init__) 1 0.000 0.000 0.000 0.000 features.py:6(BaseDatabaseFeatures) 1 0.000 0.000 0.000 0.000 features.py:8(DatabaseFeatures) 1 0.000 0.000 0.000 0.000 feedparser.py:136(FeedParser) 1 0.000 0.000 0.075 0.075 feedparser.py:20() 1 0.000 0.000 0.000 0.000 feedparser.py:45(BufferedSubFile) 1 0.000 0.000 0.000 0.000 feedparser.py:532(BytesFeedParser) 1 0.000 0.000 0.015 0.015 fields.py:1() 1 0.000 0.000 0.000 0.000 fields.py:1065(FilePathField) 1 0.000 0.000 0.000 0.000 fields.py:1110(SplitDateTimeField) 1 0.000 0.000 0.000 0.000 fields.py:1146(GenericIPAddressField) 1 0.000 0.000 0.000 0.000 fields.py:1161(SlugField) 1 0.000 0.000 0.000 0.000 fields.py:1171(UUIDField) 1 0.000 0.000 0.000 0.000 fields.py:120(RemoveField) 1 0.000 0.000 0.000 0.000 fields.py:162(AlterField) 1 0.000 0.000 0.000 0.000 fields.py:208(CharField) 1 0.000 0.000 0.000 0.000 fields.py:241(RenameField) 1 0.000 0.000 0.000 0.000 fields.py:242(IntegerField) 1 0.000 0.000 0.000 0.000 fields.py:288(FloatField) 1 0.000 0.000 0.034 0.034 fields.py:3() 1 0.000 0.000 0.000 0.000 fields.py:323(DecimalField) 1 0.000 0.000 0.000 0.000 fields.py:371(BaseTemporalField) 1 0.000 0.000 0.000 0.000 fields.py:392(DateField) 1 0.000 0.000 0.000 0.000 fields.py:41(AddField) 1 0.000 0.000 0.000 0.000 fields.py:416(TimeField) 1 0.000 0.000 0.000 0.000 fields.py:438(DateTimeField) 1 0.000 0.000 0.000 0.000 fields.py:46(Field) 1 0.000 0.000 0.000 0.000 fields.py:469(DurationField) 1 0.000 0.000 0.000 0.000 fields.py:490(RegexField) 1 0.000 0.000 0.000 0.000 fields.py:514(EmailField) 1 0.000 0.000 0.000 0.000 fields.py:522(FileField) 1 0.000 0.000 0.000 0.000 fields.py:593(ImageField) 1 0.000 0.000 0.000 0.000 fields.py:646(URLField) 1 0.000 0.000 0.000 0.000 fields.py:688(BooleanField) 1 0.000 0.000 0.000 0.000 fields.py:715(NullBooleanField) 1 0.000 0.000 0.000 0.000 fields.py:742(CallableChoiceIterator) 1 0.000 0.000 0.000 0.000 fields.py:750(ChoiceField) 1 0.000 0.000 0.000 0.000 fields.py:812(TypedChoiceField) 1 0.000 0.000 0.000 0.000 fields.py:839(MultipleChoiceField) 1 0.000 0.000 0.000 0.000 fields.py:881(TypedMultipleChoiceField) 1 0.000 0.000 0.000 0.000 fields.py:9(FieldOperation) 1 0.000 0.000 0.000 0.000 fields.py:917(ComboField) 1 0.000 0.000 0.000 0.000 fields.py:941(MultiValueField) 1 0.000 0.000 0.027 0.027 files.py:1() 1 0.000 0.000 0.000 0.000 files.py:133(FileDescriptor) 1 0.000 0.000 0.000 0.000 files.py:14(FieldFile) 1 0.000 0.000 0.000 0.000 files.py:212(FileField) 1 0.000 0.000 0.000 0.000 files.py:326(ImageFileDescriptor) 1 0.000 0.000 0.000 0.000 files.py:348(ImageFieldFile) 1 0.000 0.000 0.000 0.000 files.py:356(ImageField) 1 0.000 0.000 0.016 0.016 filters.py:10() 6 0.000 0.000 0.000 0.000 filters.py:29(contextfilter) 5 0.000 0.000 0.000 0.000 filters.py:37(evalcontextfilter) 11 0.000 0.000 0.000 0.000 filters.py:48(environmentfilter) 1 0.000 0.000 0.007 0.007 finders.py:1() 1 0.000 0.000 0.000 0.000 finders.py:129(AppDirectoriesFinder) 1 0.000 0.000 0.000 0.000 finders.py:193(BaseStorageFinder) 1 0.000 0.000 0.000 0.000 finders.py:21(BaseFinder) 1 0.000 0.000 0.000 0.000 finders.py:238(DefaultStorageFinder) 1 0.000 0.000 0.000 0.000 finders.py:48(FileSystemFinder) 1 0.000 0.000 0.003 0.003 fnmatch.py:11() 1 0.000 0.000 0.030 0.030 formats.py:1() 1 0.000 0.000 0.000 0.000 forms.py:25(DeclarativeFieldsMetaclass) 3 0.001 0.000 0.001 0.000 forms.py:27(__new__) 1 0.000 0.000 0.001 0.001 forms.py:3() 1 0.000 0.000 0.000 0.000 forms.py:498(Form) 3 0.000 0.000 0.000 0.000 forms.py:55(__prepare__) 1 0.000 0.000 0.000 0.000 forms.py:61(BaseForm) 1 0.000 0.000 0.000 0.000 formsets.py:1() 1 0.000 0.000 0.000 0.000 formsets.py:28(ManagementForm) 1 0.000 0.000 0.000 0.000 formsets.py:45(BaseFormSet) 1 0.000 0.000 0.000 0.000 functional.py:1() 874 0.000 0.000 0.000 0.000 functional.py:101(__promise__) 6 0.000 0.000 0.148 0.025 functional.py:111(__text_cast) 6 0.000 0.000 0.148 0.025 functional.py:146(__mod__) 1 0.000 0.000 0.000 0.000 functional.py:15(cached_property) 230 0.000 0.000 0.013 0.000 functional.py:158(__wrapper__) 19 0.000 0.000 0.000 0.000 functional.py:177(keep_lazy) 19 0.000 0.000 0.001 0.000 functional.py:187(decorator) 16 0.000 0.000 0.001 0.000 functional.py:202(keep_lazy_text) 15 0.000 0.000 0.000 0.000 functional.py:212(new_method_proxy) 1 0.000 0.000 0.000 0.000 functional.py:220(LazyObject) 86 0.000 0.000 0.000 0.000 functional.py:23(__init__) 17 0.000 0.000 0.000 0.000 functional.py:232(__init__) 18 0.000 0.000 0.000 0.000 functional.py:239(__setattr__) 30 0.000 0.000 0.001 0.000 functional.py:28(__get__) 1 0.000 0.000 0.000 0.000 functional.py:329(SimpleLazyObject) 15 0.000 0.000 0.000 0.000 functional.py:336(__init__) 1 0.000 0.000 0.000 0.000 functional.py:40(Promise) 38 0.000 0.000 0.002 0.000 functional.py:48(lazy) 38 0.000 0.000 0.000 0.000 functional.py:56(__proxy__) 230 0.000 0.000 0.013 0.000 functional.py:65(__init__) 230 0.006 0.000 0.013 0.000 functional.py:81(__prepare_class__) 41 0.000 0.000 0.001 0.000 functools.py:193(total_ordering) 41 0.000 0.000 0.000 0.000 functools.py:196() 8 0.000 0.000 0.000 0.000 functools.py:333(__init__) 181 0.001 0.000 0.002 0.000 functools.py:44(update_wrapper) 30 0.000 0.000 0.000 0.000 functools.py:448(lru_cache) 30 0.000 0.000 0.000 0.000 functools.py:479(decorating_function) 2 0.000 0.000 0.000 0.000 functools.py:611(_c3_merge) 5 0.000 0.000 0.000 0.000 functools.py:619() 2/1 0.000 0.000 0.000 0.000 functools.py:638(_c3_mro) 2 0.000 0.000 0.000 0.000 functools.py:674() 2 0.000 0.000 0.000 0.000 functools.py:675() 2/1 0.000 0.000 0.000 0.000 functools.py:676() 1 0.000 0.000 0.000 0.000 functools.py:683(_compose_mro) 3 0.000 0.000 0.000 0.000 functools.py:692(is_related) 1 0.000 0.000 0.000 0.000 functools.py:695() 1 0.000 0.000 0.000 0.000 functools.py:703() 1 0.000 0.000 0.000 0.000 functools.py:724(_find_impl) 124 0.000 0.000 0.000 0.000 functools.py:74(wraps) 8 0.000 0.000 0.000 0.000 functools.py:764(dispatch) 8 0.000 0.000 0.000 0.000 functools.py:802(wrapper) 1 0.000 0.000 0.000 0.000 functools.py:98(_gt_from_lt) 1 0.000 0.000 0.015 0.015 futures.py:1() 1 0.000 0.000 0.000 0.000 futures.py:110(Future) 1 0.000 0.000 0.000 0.000 futures.py:30(_TracebackLogger) 1 0.000 0.000 0.000 0.000 generator.py:26(Generator) 1 0.000 0.000 0.000 0.000 generator.py:392(BytesGenerator) 1 0.000 0.000 0.000 0.000 generator.py:445(DecodedGenerator) 1 0.000 0.000 0.000 0.000 generator.py:5() 27 0.000 0.000 0.110 0.004 genericpath.py:16(exists) 15 0.000 0.000 0.001 0.000 genericpath.py:27(isfile) 1 0.000 0.000 0.001 0.001 getpass.py:11() 1 0.000 0.000 0.000 0.000 getpass.py:26(GetPassWarning) 3/1 0.000 0.000 0.000 0.000 gettext.py:112(_parse) 1 0.000 0.000 0.000 0.000 gettext.py:169(c2py) 10 0.000 0.000 0.000 0.000 gettext.py:205(_expand_lang) 7 0.000 0.000 0.003 0.000 gettext.py:248(__init__) 1 0.000 0.000 0.000 0.000 gettext.py:259(add_fallback) 6 0.000 0.000 0.000 0.000 gettext.py:305(set_output_charset) 6 0.000 0.000 0.000 0.000 gettext.py:330(_get_versions) 6 0.000 0.000 0.003 0.000 gettext.py:334(_parse) 6 0.000 0.000 0.000 0.000 gettext.py:443(gettext) 10 0.000 0.000 0.108 0.011 gettext.py:466(find) 10 0.000 0.000 0.112 0.011 gettext.py:506(translation) 5 0.000 0.000 0.000 0.000 gettext.py:572(dgettext) 5 0.000 0.000 0.000 0.000 gettext.py:611(gettext) 7 0.000 0.000 0.000 0.000 gettext.py:84(_tokenize) 1 0.000 0.000 0.000 0.000 global_settings.py:4() 89 0.000 0.000 0.000 0.000 global_settings.py:9(gettext_noop) 1 0.000 0.000 0.000 0.000 gzip.py:110(GzipFile) 1 0.000 0.000 0.000 0.000 gzip.py:377(_GzipReader) 1 0.000 0.000 0.000 0.000 gzip.py:4() 1 0.000 0.000 0.000 0.000 gzip.py:69(_PaddedFile) 2 0.000 0.000 0.093 0.047 handlers.py:1() 1 0.000 0.000 0.000 0.000 handlers.py:10(StaticFilesHandler) 1 0.000 0.000 0.000 0.000 handlers.py:1028(NTEventLogHandler) 1 0.000 0.000 0.000 0.000 handlers.py:1126(HTTPHandler) 1 0.000 0.000 0.000 0.000 handlers.py:117(RotatingFileHandler) 1 0.000 0.000 0.000 0.000 handlers.py:1205(BufferingHandler) 1 0.000 0.000 0.000 0.000 handlers.py:1262(MemoryHandler) 1 0.000 0.000 0.000 0.000 handlers.py:1335(QueueHandler) 1 0.000 0.000 0.000 0.000 handlers.py:1400(QueueListener) 1 0.000 0.000 0.000 0.000 handlers.py:193(TimedRotatingFileHandler) 1 0.000 0.000 0.000 0.000 handlers.py:24() 35 0.000 0.000 0.000 0.000 handlers.py:30(_needs_transcode) 1 0.000 0.000 0.000 0.000 handlers.py:34(read_environ) 1 0.000 0.000 0.000 0.000 handlers.py:416(WatchedFileHandler) 1 0.000 0.000 0.000 0.000 handlers.py:420(SimpleHandler) 1 0.000 0.000 0.000 0.000 handlers.py:47(BaseRotatingHandler) 1 0.000 0.000 0.000 0.000 handlers.py:470(BaseCGIHandler) 1 0.000 0.000 0.000 0.000 handlers.py:485(SocketHandler) 1 0.000 0.000 0.000 0.000 handlers.py:494(CGIHandler) 1 0.000 0.000 0.000 0.000 handlers.py:524(IISCGIHandler) 1 0.000 0.000 0.000 0.000 handlers.py:652(DatagramHandler) 1 0.000 0.000 0.000 0.000 handlers.py:694(SysLogHandler) 1 0.000 0.000 0.000 0.000 handlers.py:94(BaseHandler) 1 0.000 0.000 0.000 0.000 handlers.py:948(SMTPHandler) 1 0.000 0.000 0.000 0.000 hashers.py:1() 1 0.000 0.000 0.000 0.000 hashers.py:162(BasePasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:232(PBKDF2PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:280(PBKDF2SHA1PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:291(Argon2PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:392(BCryptSHA256PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:455(BCryptPasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:474(SHA1PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:505(MD5PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:536(UnsaltedSHA1PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:571(UnsaltedMD5PasswordHasher) 1 0.000 0.000 0.000 0.000 hashers.py:607(CryptPasswordHasher) 14 0.000 0.000 0.001 0.000 hashlib.py:116(__get_openssl_constructor) 1 0.000 0.000 0.019 0.019 hashlib.py:54() 8 0.000 0.000 0.000 0.000 hashlib.py:73(__get_builtin_constructor) 1 0.000 0.000 0.000 0.000 header.py:179(Header) 1 0.000 0.000 0.000 0.000 header.py:413(_ValueFormatter) 1 0.000 0.000 0.022 0.022 header.py:5() 1 0.000 0.000 0.000 0.000 header.py:541(_Accumulator) 1 0.000 0.000 0.000 0.000 headerregistry.py:107(Group) 1 0.000 0.000 0.000 0.000 headerregistry.py:16(Address) 1 0.000 0.000 0.000 0.000 headerregistry.py:161(BaseHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:265(UnstructuredHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:276(UniqueUnstructuredHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:281(DateHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:320(UniqueDateHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:325(AddressHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:380(UniqueAddressHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:385(SingleAddressHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:395(UniqueSingleAddressHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:400(MIMEVersionHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:437(ParameterizedMIMEHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:466(ContentTypeHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:488(ContentDispositionHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:502(ContentTransferEncodingHeader) 1 0.000 0.000 0.000 0.000 headerregistry.py:547(HeaderRegistry) 2 0.000 0.000 0.000 0.000 headerregistry.py:551(__init__) 1 0.000 0.000 0.010 0.010 headerregistry.py:9() 1 0.000 0.000 0.000 0.000 headers.py:28(Headers) 1 0.000 0.000 0.000 0.000 headers.py:6() 257 0.000 0.000 0.000 0.000 hmac.py:10() 257 0.000 0.000 0.000 0.000 hmac.py:11() 1 0.000 0.000 0.000 0.000 hmac.py:19(HMAC) 1 0.000 0.000 0.000 0.000 hmac.py:4() 1 0.000 0.000 0.019 0.019 html.py:1() 1 0.000 0.000 0.000 0.000 html.py:127(MLStripper) 7 0.000 0.000 0.000 0.000 html.py:364(html_safe) 33 0.000 0.000 0.000 0.000 html.py:61() 1 0.000 0.000 0.012 0.012 html_parser.py:1() 1 0.000 0.000 0.000 0.000 html_parser.py:11(HTMLParser) 1 0.000 0.000 0.000 0.000 html_parser.py:7(HTMLParseError) 1 0.000 0.000 0.003 0.003 http.py:1() 1 0.000 0.000 0.021 0.021 i18n.py:1() 1 0.000 0.000 0.000 0.000 i18n.py:11(GetAvailableLanguagesNode) 1 0.000 0.000 0.000 0.000 i18n.py:181(LanguageNode) 1 0.000 0.000 0.000 0.000 i18n.py:20(GetLanguageInfoNode) 1 0.000 0.000 0.000 0.000 i18n.py:31(GetLanguageInfoListNode) 1 0.000 0.000 0.000 0.000 i18n.py:50(GetCurrentLanguageNode) 1 0.000 0.000 0.000 0.000 i18n.py:59(GetCurrentLanguageBidiNode) 1 0.000 0.000 0.000 0.000 i18n.py:68(TranslateNode) 1 0.000 0.000 0.000 0.000 i18n.py:98(BlockTranslateNode) 1 0.000 0.000 0.000 0.000 idtracking.py:1() 1 0.000 0.000 0.000 0.000 idtracking.py:151(RootVisitor) 1 0.000 0.000 0.000 0.000 idtracking.py:203(FrameSymbolVisitor) 1 0.000 0.000 0.000 0.000 idtracking.py:25(Symbols) 1 0.000 0.000 0.000 0.000 images.py:12(ImageFile) 1 0.000 0.000 0.000 0.000 images.py:5() 1 0.000 0.000 0.029 0.029 indexes.py:1() 1 0.000 0.000 0.000 0.000 indexes.py:9(Index) 1 0.000 0.000 0.000 0.000 inspect.py:1() 223 0.000 0.000 0.000 0.000 inspect.py:159(isfunction) 55 0.000 0.000 0.000 0.000 inspect.py:172(isgeneratorfunction) 55 0.000 0.000 0.000 0.000 inspect.py:180(iscoroutinefunction) 6 0.000 0.000 0.000 0.000 inspect.py:2095(_signature_from_function) 6 0.000 0.000 0.000 0.000 inspect.py:2176(_signature_from_callable) 1 0.000 0.000 0.000 0.000 inspect.py:2377(_void) 1 0.000 0.000 0.000 0.000 inspect.py:2381(_empty) 1 0.000 0.000 0.000 0.000 inspect.py:2385(_ParameterKind) 1 0.000 0.000 0.000 0.000 inspect.py:2413(Parameter) 21 0.000 0.000 0.000 0.000 inspect.py:2445(__init__) 21 0.000 0.000 0.000 0.000 inspect.py:2495(name) 21 0.000 0.000 0.000 0.000 inspect.py:2507(kind) 1 0.000 0.000 0.000 0.000 inspect.py:2565(BoundArguments) 1 0.000 0.000 0.000 0.000 inspect.py:2695(Signature) 1 0.000 0.000 0.017 0.017 inspect.py:27() 6 0.000 0.000 0.000 0.000 inspect.py:2725(__init__) 27 0.000 0.000 0.000 0.000 inspect.py:2774() 6 0.000 0.000 0.000 0.000 inspect.py:2798(from_callable) 6 0.000 0.000 0.000 0.000 inspect.py:2804(parameters) 6 0.000 0.000 0.000 0.000 inspect.py:3050(signature) 1 0.000 0.000 0.000 0.000 inspect.py:317(getmembers) 74 0.000 0.000 0.000 0.000 inspect.py:358() 6 0.000 0.000 0.000 0.000 inspect.py:36(func_accepts_kwargs) 12 0.000 0.000 0.000 0.000 inspect.py:38() 1 0.000 0.000 0.000 0.000 inspect.py:479(getmro) 6 0.000 0.000 0.000 0.000 inspect.py:485(unwrap) 6 0.000 0.000 0.000 0.000 inspect.py:505(_is_wrapper) 77 0.000 0.000 0.001 0.000 inspect.py:668(getmodulename) 77 0.000 0.000 0.000 0.000 inspect.py:672() 158 0.000 0.000 0.000 0.000 inspect.py:73(isclass) 1 0.000 0.000 0.000 0.000 inspect.py:878(EndOfBlock) 1 0.000 0.000 0.000 0.000 inspect.py:880(BlockFinder) 2 0.000 0.000 0.008 0.004 introspection.py:1() 1 0.000 0.000 0.000 0.000 introspection.py:10(BaseDatabaseIntrospection) 1 0.000 0.000 0.000 0.000 introspection.py:14(__init__) 1 0.000 0.000 0.000 0.000 introspection.py:22(FlexibleFieldLookupDict) 1 0.000 0.000 0.000 0.000 introspection.py:57(DatabaseIntrospection) 1 0.000 0.000 0.000 0.000 ipaddress.py:1049(_BaseV4) 19 0.000 0.000 0.000 0.000 ipaddress.py:1075(_make_netmask) 20 0.000 0.000 0.000 0.000 ipaddress.py:1099(_ip_int_from_string) 80 0.000 0.000 0.000 0.000 ipaddress.py:1125(_parse_octet) 1 0.000 0.000 0.000 0.000 ipaddress.py:1245(IPv4Address) 30 0.000 0.000 0.000 0.000 ipaddress.py:1251(__init__) 1 0.000 0.000 0.000 0.000 ipaddress.py:1362(IPv4Interface) 1 0.000 0.000 0.000 0.000 ipaddress.py:1445(IPv4Network) 19 0.000 0.000 0.000 0.000 ipaddress.py:1460(__init__) 1 0.000 0.000 0.000 0.000 ipaddress.py:1542(_IPv4Constants) 1 0.000 0.000 0.000 0.000 ipaddress.py:1576(_BaseV6) 47 0.000 0.000 0.000 0.000 ipaddress.py:158(_split_optional_netmask) 28 0.000 0.000 0.000 0.000 ipaddress.py:1596(_make_netmask) 28 0.000 0.000 0.000 0.000 ipaddress.py:1614(_ip_int_from_string) 31 0.000 0.000 0.000 0.000 ipaddress.py:1718(_parse_hextet) 1 0.000 0.000 0.000 0.000 ipaddress.py:1860(IPv6Address) 43 0.000 0.000 0.000 0.000 ipaddress.py:1866(__init__) 1 0.000 0.000 0.000 0.000 ipaddress.py:19(AddressValueError) 1 0.000 0.000 0.000 0.000 ipaddress.py:2040(IPv6Interface) 1 0.000 0.000 0.000 0.000 ipaddress.py:2127(IPv6Network) 28 0.000 0.000 0.001 0.000 ipaddress.py:2143(__init__) 1 0.000 0.000 0.001 0.001 ipaddress.py:2233(_IPv6Constants) 1 0.000 0.000 0.000 0.000 ipaddress.py:23(NetmaskValueError) 1 0.000 0.000 0.000 0.000 ipaddress.py:385(_IPAddressBase) 72 0.000 0.000 0.000 0.000 ipaddress.py:417(_check_int_address) 25 0.000 0.000 0.000 0.000 ipaddress.py:433(_ip_int_from_prefix) 25 0.000 0.000 0.000 0.000 ipaddress.py:476(_prefix_from_prefix_string) 1 0.000 0.000 0.000 0.000 ipaddress.py:539(_BaseAddress) 94 0.000 0.000 0.000 0.000 ipaddress.py:550(__int__) 1 0.000 0.000 0.000 0.000 ipaddress.py:598(_BaseNetwork) 47 0.000 0.000 0.000 0.000 ipaddress.py:607(__init__) 1 0.000 0.000 0.001 0.001 ipaddress.py:9() 1 0.000 0.000 0.000 0.000 ipv6.py:1() 1 0.000 0.000 0.000 0.000 iterators.py:5() 1 0.000 0.000 0.000 0.000 itercompat.py:1() 1 0.000 0.000 0.557 0.557 jinja2.py:1() 1 0.000 0.000 0.000 0.000 jinja2.py:11(Jinja2) 1 0.000 0.000 0.000 0.000 jinja2.py:52(Template) 1 0.000 0.000 0.000 0.000 jinja2.py:74(Origin) 1 0.000 0.000 0.000 0.000 json.py:19(Serializer) 1 0.000 0.000 0.007 0.007 json.py:3() 1 0.000 0.000 0.000 0.000 json.py:76(DjangoJSONEncoder) 1 0.000 0.000 0.000 0.000 lazy.py:1() 1 0.000 0.000 0.000 0.000 lazy.py:118() 1 0.000 0.000 0.000 0.000 lazy.py:121(LazySet) 2 0.000 0.000 0.000 0.000 lazy.py:139(__new__) 2 0.000 0.000 0.000 0.000 lazy.py:144(LazySet) 84 0.000 0.000 0.000 0.000 lazy.py:149(lazy) 1 0.000 0.000 0.000 0.000 lazy.py:16(LazyDict) 1 0.000 0.000 0.000 0.000 lazy.py:172() 1 0.000 0.000 0.000 0.000 lazy.py:71(LazyList) 2 0.000 0.000 0.000 0.000 lazy.py:84(__new__) 2 0.000 0.000 0.000 0.000 lazy.py:91(LazyList) 62 0.000 0.000 0.000 0.000 lazy.py:96(lazy) 1 0.000 0.000 0.000 0.000 lexer.py:139() 27 0.000 0.000 0.000 0.000 lexer.py:141() 26 0.000 0.000 0.000 0.000 lexer.py:142() 1 0.000 0.000 0.018 0.018 lexer.py:16() 1 0.000 0.000 0.000 0.000 lexer.py:219(Failure) 1 0.000 0.000 0.000 0.000 lexer.py:232(Token) 4 0.000 0.000 0.000 0.000 lexer.py:235() 1 0.000 0.000 0.000 0.000 lexer.py:275(TokenStreamIterator) 1 0.000 0.000 0.000 0.000 lexer.py:296(TokenStream) 1 0.000 0.000 0.000 0.000 lexer.py:412(Lexer) 1 0.000 0.000 0.000 0.000 library.py:1() 1 0.000 0.000 0.000 0.000 library.py:12(InvalidTemplateLibrary) 1 0.000 0.000 0.000 0.000 library.py:16(Library) 1 0.000 0.000 0.000 0.000 library.py:164(TagHelperNode) 1 0.000 0.000 0.000 0.000 library.py:184(SimpleNode) 1 0.000 0.000 0.000 0.000 library.py:201(InclusionNode) 5 0.000 0.000 0.000 0.000 library.py:23(__init__) 52 0.000 0.000 0.000 0.000 library.py:27(tag) 4 0.000 0.000 0.035 0.009 library.py:312(import_library) 15 0.000 0.000 0.000 0.000 library.py:37(dec) 22 0.000 0.000 0.000 0.000 library.py:50(tag_function) 120/115 0.000 0.000 0.000 0.000 library.py:54(filter) 48 0.000 0.000 0.000 0.000 library.py:64(dec) 7 0.000 0.000 0.000 0.000 library.py:73(dec) 53 0.000 0.000 0.000 0.000 library.py:96(filter_function) 1 0.000 0.000 0.009 0.009 linecache.py:6() 1 0.000 0.000 0.005 0.005 list.py:1() 1 0.000 0.000 0.000 0.000 list.py:139(BaseListView) 1 0.000 0.000 0.000 0.000 list.py:161(MultipleObjectTemplateResponseMixin) 1 0.000 0.000 0.000 0.000 list.py:188(ListView) 1 0.000 0.000 0.000 0.000 list.py:9(MultipleObjectMixin) 1 0.000 0.000 0.000 0.000 loader.py:1() 1 0.000 0.000 0.000 0.000 loader_tags.py:1() 1 0.000 0.000 0.000 0.000 loader_tags.py:158(IncludeNode) 1 0.000 0.000 0.000 0.000 loader_tags.py:21(BlockContext) 1 0.000 0.000 0.000 0.000 loader_tags.py:46(BlockNode) 1 0.000 0.000 0.000 0.000 loader_tags.py:85(ExtendsNode) 1 0.000 0.000 0.000 0.000 loaders.py:10() 1 0.000 0.000 0.000 0.000 loaders.py:138(FileSystemLoader) 1 0.000 0.000 0.000 0.000 loaders.py:205(PackageLoader) 1 0.000 0.000 0.000 0.000 loaders.py:270(DictLoader) 1 0.000 0.000 0.000 0.000 loaders.py:292(FunctionLoader) 1 0.000 0.000 0.000 0.000 loaders.py:322(PrefixLoader) 1 0.000 0.000 0.000 0.000 loaders.py:37(BaseLoader) 1 0.000 0.000 0.000 0.000 loaders.py:376(ChoiceLoader) 1 0.000 0.000 0.000 0.000 loaders.py:417(_TemplateModule) 1 0.000 0.000 0.000 0.000 loaders.py:421(ModuleLoader) 10 0.000 0.000 0.000 0.000 locale.py:379(normalize) 1 0.000 0.000 0.000 0.000 locale.py:512(getdefaultlocale) 1 0.000 0.000 0.001 0.001 locks.py:1() 1 0.000 0.000 0.000 0.000 locks.py:13(_ContextManager) 1 0.000 0.000 0.005 0.005 locks.py:18() 1 0.000 0.000 0.000 0.000 locks.py:223(Event) 1 0.000 0.000 0.000 0.000 locks.py:289(Condition) 1 0.000 0.000 0.000 0.000 locks.py:410(Semaphore) 1 0.000 0.000 0.000 0.000 locks.py:43(_ContextManagerMixin) 1 0.000 0.000 0.000 0.000 locks.py:48(_OFFSET) 1 0.000 0.000 0.000 0.000 locks.py:487(BoundedSemaphore) 1 0.000 0.000 0.000 0.000 locks.py:53(_OFFSET_UNION) 1 0.000 0.000 0.000 0.000 locks.py:59(OVERLAPPED) 1 0.000 0.000 0.000 0.000 locks.py:89(Lock) 2 0.000 0.000 0.302 0.151 log.py:1() 1 0.000 0.000 0.000 0.000 log.py:134(CallbackFilter) 1 0.000 0.000 0.000 0.000 log.py:149(RequireDebugFalse) 1 0.000 0.000 0.000 0.000 log.py:154(RequireDebugTrue) 1 0.000 0.000 0.000 0.000 log.py:159(ServerFormatter) 2 0.000 0.000 0.000 0.000 log.py:160(__init__) 1 0.000 0.000 0.001 0.001 log.py:64(configure_logging) 1 0.000 0.000 0.000 0.000 log.py:76(AdminEmailHandler) 1 0.000 0.000 0.000 0.000 log.py:83(__init__) 1 0.000 0.000 0.002 0.002 lookups.py:1() 1 0.000 0.000 0.000 0.000 lookups.py:12(Lookup) 1 0.000 0.000 0.000 0.000 lookups.py:127(Transform) 1 0.000 0.000 0.000 0.000 lookups.py:149(BuiltinLookup) 1 0.000 0.000 0.000 0.000 lookups.py:170(FieldGetDbPrepValueMixin) 1 0.000 0.000 0.000 0.000 lookups.py:191(FieldGetDbPrepValueIterableMixin) 1 0.000 0.000 0.000 0.000 lookups.py:244(Exact) 1 0.000 0.000 0.000 0.000 lookups.py:263(IExact) 1 0.000 0.000 0.000 0.000 lookups.py:275(GreaterThan) 1 0.000 0.000 0.000 0.000 lookups.py:280(GreaterThanOrEqual) 1 0.000 0.000 0.000 0.000 lookups.py:285(LessThan) 1 0.000 0.000 0.000 0.000 lookups.py:290(LessThanOrEqual) 1 0.000 0.000 0.000 0.000 lookups.py:295(IntegerFieldFloatRounding) 1 0.000 0.000 0.000 0.000 lookups.py:306(IntegerGreaterThanOrEqual) 1 0.000 0.000 0.000 0.000 lookups.py:311(IntegerLessThan) 1 0.000 0.000 0.000 0.000 lookups.py:316(In) 1 0.000 0.000 0.000 0.000 lookups.py:380(PatternLookup) 1 0.000 0.000 0.000 0.000 lookups.py:399(Contains) 1 0.000 0.000 0.000 0.000 lookups.py:411(IContains) 1 0.000 0.000 0.000 0.000 lookups.py:417(StartsWith) 1 0.000 0.000 0.000 0.000 lookups.py:429(IStartsWith) 1 0.000 0.000 0.000 0.000 lookups.py:441(EndsWith) 1 0.000 0.000 0.000 0.000 lookups.py:453(IEndsWith) 1 0.000 0.000 0.000 0.000 lookups.py:465(Range) 1 0.000 0.000 0.000 0.000 lookups.py:473(IsNull) 1 0.000 0.000 0.000 0.000 lookups.py:486(Regex) 1 0.000 0.000 0.000 0.000 lookups.py:501(IRegex) 1 0.000 0.000 0.000 0.000 lookups.py:506(YearLookup) 1 0.000 0.000 0.000 0.000 lookups.py:516(YearComparisonLookup) 1 0.000 0.000 0.000 0.000 lookups.py:536(YearExact) 1 0.000 0.000 0.000 0.000 lookups.py:557(YearGt) 1 0.000 0.000 0.000 0.000 lookups.py:564(YearGte) 1 0.000 0.000 0.000 0.000 lookups.py:571(YearLt) 1 0.000 0.000 0.000 0.000 lookups.py:578(YearLte) 1 0.000 0.000 0.000 0.000 lorem_ipsum.py:3() 1 0.000 0.000 0.000 0.000 lru_cache.py:1() 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) 1 0.000 0.000 0.005 0.005 lzma.py:9() 77 0.000 0.000 0.000 0.000 machinery.py:19(all_suffixes) 1 0.000 0.000 574.281 574.281 manage.py:2() 1 0.000 0.000 0.049 0.049 manager.py:1() 1 0.000 0.000 0.001 0.001 manager.py:100(from_queryset) 10 0.000 0.000 0.000 0.000 manager.py:110(contribute_to_class) 12 0.000 0.000 0.000 0.000 manager.py:119(_set_creation_counter) 1 0.000 0.000 0.000 0.000 manager.py:167(Manager) 1 0.000 0.000 0.000 0.000 manager.py:171(ManagerDescriptor) 10 0.000 0.000 0.000 0.000 manager.py:173(__init__) 1 0.000 0.000 0.000 0.000 manager.py:197(EmptyManager) 2 0.000 0.000 0.000 0.000 manager.py:198(__init__) 17 0.000 0.000 0.000 0.000 manager.py:20(__new__) 12 0.000 0.000 0.000 0.000 manager.py:26(__init__) 1 0.000 0.000 0.001 0.001 manager.py:78(_get_queryset_methods) 40 0.000 0.000 0.000 0.000 manager.py:80(create_method) 1 0.000 0.000 0.000 0.000 manager.py:9(BaseManager) 1 0.000 0.000 0.094 0.094 message.py:1() 1 0.000 0.000 0.006 0.006 message.py:105(Message) 1 0.000 0.000 0.000 0.000 message.py:1159(EmailMessage) 1 0.000 0.000 0.000 0.000 message.py:126(MIMEMixin) 1 0.000 0.000 0.000 0.000 message.py:14(MIMEMessage) 1 0.000 0.000 0.000 0.000 message.py:154(SafeMIMEMessage) 1 0.000 0.000 0.000 0.000 message.py:162(SafeMIMEText) 1 0.000 0.000 0.000 0.000 message.py:184(SafeMIMEMultipart) 1 0.000 0.000 0.000 0.000 message.py:195(EmailMessage) 1 0.000 0.000 0.000 0.000 message.py:35(BadHeaderError) 1 0.000 0.000 0.000 0.000 message.py:412(EmailMultiAlternatives) 2 0.000 0.000 0.020 0.010 message.py:5() 1 0.000 0.000 0.000 0.000 message.py:945(MIMEPart) 23 0.000 0.000 0.000 0.000 messages.py:11(__init__) 1 0.000 0.000 0.000 0.000 messages.py:2() 1 0.000 0.000 0.000 0.000 messages.py:53(Debug) 1 0.000 0.000 0.000 0.000 messages.py:58(Info) 1 0.000 0.000 0.000 0.000 messages.py:63(Warning) 20 0.000 0.000 0.000 0.000 messages.py:64(__init__) 1 0.000 0.000 0.000 0.000 messages.py:68(Error) 3 0.000 0.000 0.000 0.000 messages.py:69(__init__) 1 0.000 0.000 0.000 0.000 messages.py:73(Critical) 1 0.000 0.000 0.000 0.000 messages.py:9(CheckMessage) 1 0.000 0.000 0.006 0.006 migration.py:1() 1 0.000 0.000 0.000 0.000 migration.py:177(SwappableTuple) 1 0.000 0.000 0.000 0.000 migration.py:6(Migration) 1 0.006 0.006 0.170 0.170 mimetypes.py:230(read_windows_registry) 1 0.000 0.000 0.000 0.000 mimetypes.py:24() 1594 0.002 0.000 0.119 0.000 mimetypes.py:243(enum_types) 1 0.000 0.000 0.171 0.171 mimetypes.py:344(init) 1 0.000 0.000 0.000 0.000 mimetypes.py:375(_default_mime_types) 1 0.000 0.000 0.000 0.000 mimetypes.py:58(MimeTypes) 1 0.000 0.000 0.000 0.000 mimetypes.py:66(__init__) 167 0.000 0.000 0.000 0.000 mimetypes.py:80(add_type) 1 0.000 0.000 0.000 0.000 mixins.py:1() 1 0.000 0.000 0.000 0.000 mixins.py:4(FieldCacheMixin) 1 0.000 0.000 0.000 0.000 model_checks.py:1() 5 0.000 0.000 0.504 0.101 models.py:1() 1 0.000 0.000 0.000 0.000 models.py:10(Session) 1 0.000 0.000 0.000 0.000 models.py:1087(InlineForeignKeyField) 1 0.000 0.000 0.000 0.000 models.py:11(__init__) 1 0.000 0.000 0.000 0.000 models.py:1128(ModelChoiceIterator) 1 0.000 0.000 0.000 0.000 models.py:1150(ModelChoiceField) 1 0.000 0.000 0.000 0.000 models.py:12(EmptyModel) 1 0.000 0.000 0.000 0.000 models.py:120(Meta) 1 0.000 0.000 0.000 0.000 models.py:1261(ModelMultipleChoiceField) 1 0.000 0.000 0.000 0.000 models.py:13(Meta) 1 0.000 0.000 0.000 0.000 models.py:131(UserManager) 1 0.000 0.000 0.000 0.000 models.py:134(ContentType) 1 0.000 0.000 0.000 0.000 models.py:139(Meta) 1 0.000 0.000 0.000 0.000 models.py:193(ModelFormOptions) 1 0.000 0.000 0.000 0.000 models.py:203(PermissionsMixin) 1 0.000 0.000 0.000 0.000 models.py:206(ModelFormMetaclass) 1 0.000 0.000 0.000 0.000 models.py:207(__new__) 1 0.000 0.000 0.000 0.000 models.py:227(DeleteModel) 1 0.000 0.000 0.000 0.000 models.py:23(ModelOperation) 1 0.000 0.000 0.000 0.000 models.py:23(PermissionManager) 1 0.000 0.000 0.000 0.000 models.py:236(Meta) 1 0.000 0.000 0.000 0.000 models.py:257(RenameModel) 1 0.000 0.000 0.000 0.000 models.py:278(BaseModelForm) 1 0.000 0.000 0.001 0.001 models.py:288(AbstractUser) 1 0.000 0.000 0.000 0.000 models.py:33(Permission) 1 0.000 0.000 0.000 0.000 models.py:331(Meta) 1 0.000 0.000 0.000 0.000 models.py:34(Meta) 1 0.000 0.000 0.000 0.000 models.py:356(User) 1 0.000 0.000 0.000 0.000 models.py:363(Meta) 1 0.000 0.000 0.000 0.000 models.py:367(AnonymousUser) 1 0.000 0.000 0.001 0.001 models.py:4() 1 0.000 0.000 0.000 0.000 models.py:41(CreateModel) 1 0.000 0.000 0.000 0.000 models.py:419(AlterModelTable) 1 0.000 0.000 0.000 0.000 models.py:467(ModelForm) 1 0.000 0.000 0.000 0.000 models.py:474(ModelOptionOperation) 1 0.000 0.000 0.000 0.000 models.py:481(FieldRelatedOptionOperation) 1 0.000 0.000 0.000 0.000 models.py:490(AlterUniqueTogether) 1 0.000 0.000 0.000 0.000 models.py:544(AlterIndexTogether) 1 0.000 0.000 0.000 0.000 models.py:554(BaseModelFormSet) 1 0.000 0.000 0.000 0.000 models.py:598(AlterOrderWithRespectTo) 1 0.000 0.000 0.001 0.001 models.py:6() 1 0.000 0.000 0.000 0.000 models.py:6(SessionManager) 1 0.000 0.000 0.000 0.000 models.py:65(Meta) 1 0.000 0.000 0.000 0.000 models.py:655(AlterModelOptions) 1 0.000 0.000 0.000 0.000 models.py:710(AlterModelManagers) 1 0.000 0.000 0.000 0.000 models.py:741(IndexOperation) 1 0.000 0.000 0.000 0.000 models.py:749(AddIndex) 1 0.000 0.000 0.000 0.000 models.py:797(RemoveIndex) 1 0.000 0.000 0.000 0.000 models.py:8(ContentTypeManager) 1 0.000 0.000 0.000 0.000 models.py:84(GroupManager) 1 0.000 0.000 0.000 0.000 models.py:882(BaseInlineFormSet) 1 0.000 0.000 0.000 0.000 models.py:94(Group) 1 0.000 0.000 0.000 0.000 module_loading.py:1() 7 0.000 0.000 0.004 0.001 module_loading.py:63(module_has_submodule) 1 0.000 0.000 0.000 0.000 module_loading.py:7(import_string) 1 0.000 0.000 0.000 0.000 move.py:6() 1 0.000 0.000 0.000 0.000 multipart.py:13(MIMEMultipart) 1 0.000 0.000 0.000 0.000 multipart.py:5() 1 0.000 0.000 0.000 0.000 multipartparser.py:26(MultiPartParserError) 1 0.000 0.000 0.000 0.000 multipartparser.py:30(InputStreamExhausted) 1 0.000 0.000 0.000 0.000 multipartparser.py:312(LazyStream) 1 0.000 0.000 0.000 0.000 multipartparser.py:42(MultiPartParser) 1 0.000 0.000 0.000 0.000 multipartparser.py:428(ChunkIter) 1 0.000 0.000 0.000 0.000 multipartparser.py:451(InterBoundaryIter) 1 0.000 0.000 0.000 0.000 multipartparser.py:469(BoundaryIter) 1 0.000 0.000 0.208 0.208 multipartparser.py:6() 1 0.000 0.000 0.000 0.000 multipartparser.py:635(Parser) 1 0.000 0.000 0.000 0.000 nodes.py:107(Node) 1 0.000 0.000 0.054 0.054 nodes.py:14() 1 0.000 0.000 0.000 0.000 nodes.py:275(Stmt) 1 0.000 0.000 0.000 0.000 nodes.py:280(Helper) 1 0.000 0.000 0.000 0.000 nodes.py:285(Template) 1 0.000 0.000 0.000 0.000 nodes.py:292(Output) 1 0.000 0.000 0.000 0.000 nodes.py:299(Extends) 1 0.000 0.000 0.000 0.000 nodes.py:304(For) 1 0.000 0.000 0.000 0.000 nodes.py:315(If) 1 0.000 0.000 0.000 0.000 nodes.py:320(Macro) 1 0.000 0.000 0.000 0.000 nodes.py:328(CallBlock) 1 0.000 0.000 0.000 0.000 nodes.py:335(FilterBlock) 1 0.000 0.000 0.000 0.000 nodes.py:340(With) 1 0.000 0.000 0.000 0.000 nodes.py:349(Block) 1 0.000 0.000 0.000 0.000 nodes.py:354(Include) 1 0.000 0.000 0.000 0.000 nodes.py:359(Import) 1 0.000 0.000 0.000 0.000 nodes.py:364(FromImport) 1 0.000 0.000 0.000 0.000 nodes.py:378(ExprStmt) 1 0.000 0.000 0.000 0.000 nodes.py:383(Assign) 1 0.000 0.000 0.000 0.000 nodes.py:388(AssignBlock) 1 0.000 0.000 0.000 0.000 nodes.py:393(Expr) 1 0.000 0.000 0.000 0.000 nodes.py:415(BinExpr) 1 0.000 0.000 0.000 0.000 nodes.py:434(UnaryExpr) 1 0.000 0.000 0.000 0.000 nodes.py:453(Name) 1 0.000 0.000 0.000 0.000 nodes.py:468(NSRef) 1 0.000 0.000 0.000 0.000 nodes.py:480(Literal) 1 0.000 0.000 0.000 0.000 nodes.py:485(Const) 1 0.000 0.000 0.000 0.000 nodes.py:515(TemplateData) 1 0.000 0.000 0.000 0.000 nodes.py:528(Tuple) 1 0.000 0.000 0.000 0.000 nodes.py:546(List) 1 0.000 0.000 0.000 0.000 nodes.py:55(Impossible) 1 0.000 0.000 0.000 0.000 nodes.py:555(Dict) 1 0.000 0.000 0.000 0.000 nodes.py:566(Pair) 1 0.000 0.000 0.000 0.000 nodes.py:575(Keyword) 1 0.000 0.000 0.000 0.000 nodes.py:584(CondExpr) 1 0.000 0.000 0.000 0.000 nodes.py:59(NodeType) 1 0.000 0.000 0.000 0.000 nodes.py:621(Filter) 67 0.001 0.000 0.002 0.000 nodes.py:64(__new__) 1 0.000 0.000 0.000 0.000 nodes.py:669(Test) 1 0.000 0.000 0.000 0.000 nodes.py:692(Call) 1 0.000 0.000 0.000 0.000 nodes.py:702(Getitem) 1 0.000 0.000 0.000 0.000 nodes.py:720(Getattr) 1 0.000 0.000 0.000 0.000 nodes.py:740(Slice) 1 0.000 0.000 0.000 0.000 nodes.py:755(Concat) 1 0.000 0.000 0.000 0.000 nodes.py:76(EvalContext) 1 0.000 0.000 0.000 0.000 nodes.py:766(Compare) 1 0.000 0.000 0.000 0.000 nodes.py:785(Operand) 17 0.000 0.000 0.000 0.000 nodes.py:791() 1 0.000 0.000 0.000 0.000 nodes.py:795(Mul) 1 0.000 0.000 0.000 0.000 nodes.py:800(Div) 1 0.000 0.000 0.000 0.000 nodes.py:805(FloorDiv) 1 0.000 0.000 0.000 0.000 nodes.py:812(Add) 1 0.000 0.000 0.000 0.000 nodes.py:817(Sub) 1 0.000 0.000 0.000 0.000 nodes.py:822(Mod) 1 0.000 0.000 0.000 0.000 nodes.py:827(Pow) 1 0.000 0.000 0.000 0.000 nodes.py:832(And) 1 0.000 0.000 0.000 0.000 nodes.py:841(Or) 1 0.000 0.000 0.000 0.000 nodes.py:850(Not) 1 0.000 0.000 0.000 0.000 nodes.py:855(Neg) 1 0.000 0.000 0.000 0.000 nodes.py:860(Pos) 1 0.000 0.000 0.000 0.000 nodes.py:868(EnvironmentAttribute) 1 0.000 0.000 0.000 0.000 nodes.py:875(ExtensionAttribute) 1 0.000 0.000 0.000 0.000 nodes.py:885(ImportedName) 1 0.000 0.000 0.000 0.000 nodes.py:894(InternalName) 1 0.000 0.000 0.000 0.000 nodes.py:908(MarkSafe) 1 0.000 0.000 0.000 0.000 nodes.py:917(MarkSafeIfAutoescape) 1 0.000 0.000 0.000 0.000 nodes.py:935(ContextReference) 1 0.000 0.000 0.000 0.000 nodes.py:948(Continue) 1 0.000 0.000 0.000 0.000 nodes.py:952(Break) 1 0.000 0.000 0.000 0.000 nodes.py:956(Scope) 1 0.000 0.000 0.000 0.000 nodes.py:961(OverlayScope) 1 0.000 0.000 0.000 0.000 nodes.py:977(EvalContextModifier) 1 0.000 0.000 0.000 0.000 nodes.py:988(ScopedEvalContextModifier) 1 0.000 0.000 0.000 0.000 nonmultipart.py:14(MIMENonMultipart) 1 0.000 0.000 0.000 0.000 nonmultipart.py:5() 304 0.001 0.000 0.001 0.000 ntpath.py:122(splitdrive) 85 0.000 0.000 0.001 0.000 ntpath.py:200(split) 80 0.000 0.000 0.001 0.000 ntpath.py:234(basename) 5 0.000 0.000 0.000 0.000 ntpath.py:241(dirname) 85 0.000 0.000 0.000 0.000 ntpath.py:34(_get_bothseps) 1 0.000 0.000 0.000 0.000 ntpath.py:44(normcase) 9 0.000 0.000 0.000 0.000 ntpath.py:472(normpath) 9 0.000 0.000 0.000 0.000 ntpath.py:539(abspath) 85 0.000 0.000 0.001 0.000 ntpath.py:75(join) 1 0.000 0.000 0.000 0.000 nturl2path.py:1() 1 0.000 0.000 0.000 0.000 numberformat.py:1() 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) 1 0.000 0.000 0.001 0.001 numbers.py:6() 1 0.000 0.000 0.000 0.000 opcode.py:37() 118 0.000 0.000 0.000 0.000 opcode.py:39(def_op) 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) 7 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) 1 0.000 0.000 0.000 0.000 opcode.py:5() 6 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) 2 0.000 0.000 0.009 0.004 operations.py:1() 1 0.000 0.000 0.000 0.000 operations.py:14(BaseDatabaseOperations) 1 0.000 0.000 0.000 0.000 operations.py:15(DatabaseOperations) 11 0.000 0.000 0.000 0.000 operations.py:250(max_name_length) 1 0.000 0.000 0.000 0.000 operations.py:49(__init__) 1 0.000 0.000 0.000 0.000 optimizer.py:18() 1 0.000 0.000 0.000 0.000 optimizer.py:30(Optimizer) 1 0.000 0.000 0.000 0.000 options.py:1() 13 0.000 0.000 0.000 0.000 options.py:139(label_lower) 13 0.000 0.000 0.233 0.018 options.py:152(contribute_to_class) 9 0.000 0.000 0.000 0.000 options.py:207(_prepare) 10 0.000 0.000 0.000 0.000 options.py:247(add_manager) 56 0.000 0.000 0.000 0.000 options.py:251(add_field) 49 0.000 0.000 0.000 0.000 options.py:281(setup_pk) 7 0.000 0.000 0.000 0.000 options.py:323(swapped) 9 0.000 0.000 0.000 0.000 options.py:348(managers) 22 0.000 0.000 0.000 0.000 options.py:352() 14 0.000 0.000 0.000 0.000 options.py:365() 5 0.000 0.000 0.000 0.000 options.py:424(fields) 26 0.000 0.000 0.000 0.000 options.py:43(normalize_together) 13 0.000 0.000 0.000 0.000 options.py:441(is_not_an_m2m_field) 13 0.000 0.000 0.000 0.000 options.py:444(is_not_a_generic_relation) 13 0.000 0.000 0.000 0.000 options.py:447(is_not_a_generic_foreign_key) 18 0.000 0.000 0.000 0.000 options.py:454() 10 0.000 0.000 0.000 0.000 options.py:58() 19 0.000 0.000 0.000 0.000 options.py:65(make_immutable_fields_list) 1 0.000 0.000 0.000 0.000 options.py:69(Options) 80 0.000 0.000 0.000 0.000 options.py:710(_expire_cache) 5 0.000 0.000 0.000 0.000 options.py:737(_get_fields) 13 0.000 0.000 0.000 0.000 options.py:79(__init__) 1 0.000 0.000 0.000 0.000 os.py:1067(__subclasshook__) 1 0.000 0.000 0.000 0.000 os.py:40(_get_exports_list) 1 0.000 0.000 0.000 0.000 os.py:44() 116 0.000 0.000 0.000 0.000 os.py:664(__getitem__) 1 0.000 0.000 0.000 0.000 os.py:672(__setitem__) 72 0.000 0.000 0.000 0.000 os.py:687(__iter__) 1 0.000 0.000 0.000 0.000 os.py:701(copy) 1 0.000 0.000 0.000 0.000 os.py:704(setdefault) 118 0.000 0.000 0.000 0.000 os.py:728(check_str) 117 0.000 0.000 0.000 0.000 os.py:734(encodekey) 1 0.000 0.000 0.000 0.000 paginator.py:1() 1 0.000 0.000 0.000 0.000 paginator.py:13(InvalidPage) 1 0.000 0.000 0.000 0.000 paginator.py:130(Page) 1 0.000 0.000 0.000 0.000 paginator.py:17(PageNotAnInteger) 1 0.000 0.000 0.000 0.000 paginator.py:21(EmptyPage) 1 0.000 0.000 0.000 0.000 paginator.py:25(Paginator) 1 0.000 0.000 0.000 0.000 paginator.py:9(UnorderedObjectListWarning) 1 0.000 0.000 0.000 0.000 parse.py:126(_ResultMixinStr) 1 0.000 0.000 0.000 0.000 parse.py:134(_ResultMixinBytes) 1 0.000 0.000 0.000 0.000 parse.py:142(_NetlocResultMixinBase) 1 0.000 0.000 0.000 0.000 parse.py:175(_NetlocResultMixinStr) 1 0.000 0.000 0.000 0.000 parse.py:205(_NetlocResultMixinBytes) 1 0.000 0.000 0.003 0.003 parse.py:28() 1 0.000 0.000 0.000 0.000 parse.py:310(DefragResult) 1 0.000 0.000 0.000 0.000 parse.py:318(SplitResult) 1 0.000 0.000 0.000 0.000 parse.py:323(ParseResult) 1 0.000 0.000 0.000 0.000 parse.py:329(DefragResultBytes) 1 0.000 0.000 0.000 0.000 parse.py:337(SplitResultBytes) 1 0.000 0.000 0.000 0.000 parse.py:342(ParseResultBytes) 1 0.000 0.000 0.000 0.000 parse.py:348(_fix_result_transcoding) 1 0.000 0.000 0.000 0.000 parse.py:725(Quoter) 1 0.000 0.000 0.008 0.008 parser.py:1() 1 0.000 0.000 0.000 0.000 parser.py:10() 1 0.000 0.000 0.000 0.000 parser.py:127(BytesHeaderParser) 1 0.000 0.000 0.000 0.000 parser.py:17(Parser) 1 0.000 0.000 0.000 0.000 parser.py:32(Parser) 1 0.000 0.000 0.081 0.081 parser.py:5() 1 0.000 0.000 0.000 0.000 parser.py:63(HTMLParser) 1 0.000 0.000 0.000 0.000 parser.py:72(HeaderParser) 1 0.000 0.000 0.000 0.000 parser.py:80(BytesParser) 1 0.000 0.000 0.004 0.004 password_validation.py:1() 1 0.000 0.000 0.000 0.000 password_validation.py:118(UserAttributeSimilarityValidator) 1 0.000 0.000 0.000 0.000 password_validation.py:160(CommonPasswordValidator) 1 0.000 0.000 0.000 0.000 password_validation.py:193(NumericPasswordValidator) 1 0.000 0.000 0.000 0.000 password_validation.py:91(MinimumLengthValidator) 1 0.000 0.000 0.002 0.002 pathlib.py:1() 2 0.000 0.000 0.000 0.000 pathlib.py:1006(_init) 1 0.000 0.000 0.000 0.000 pathlib.py:107(_WindowsFlavour) 27 0.000 0.000 0.000 0.000 pathlib.py:119() 27 0.000 0.000 0.000 0.000 pathlib.py:120() 1 0.000 0.000 0.000 0.000 pathlib.py:126() 1 0.000 0.000 0.000 0.000 pathlib.py:127() 1 0.000 0.000 0.000 0.000 pathlib.py:136(splitroot) 1 0.000 0.000 0.000 0.000 pathlib.py:1444(PosixPath) 1 0.000 0.000 0.000 0.000 pathlib.py:1451(WindowsPath) 1 0.000 0.000 0.000 0.000 pathlib.py:274(_PosixFlavour) 1 0.000 0.000 0.000 0.000 pathlib.py:377(_Accessor) 1 0.000 0.000 0.000 0.000 pathlib.py:382(_NormalAccessor) 10 0.000 0.000 0.000 0.000 pathlib.py:384(_wrap_strfunc) 3 0.000 0.000 0.000 0.000 pathlib.py:390(_wrap_binary_strfunc) 1 0.000 0.000 0.000 0.000 pathlib.py:44(_Flavour) 1 0.000 0.000 0.000 0.000 pathlib.py:467(_Selector) 2 0.000 0.000 0.000 0.000 pathlib.py:48(__init__) 1 0.000 0.000 0.000 0.000 pathlib.py:492(_TerminatingSelector) 1 0.000 0.000 0.000 0.000 pathlib.py:498(_PreciseSelector) 1 0.000 0.000 0.000 0.000 pathlib.py:51(parse_parts) 1 0.000 0.000 0.000 0.000 pathlib.py:514(_WildcardSelector) 1 0.000 0.000 0.000 0.000 pathlib.py:537(_RecursiveWildcardSelector) 1 0.000 0.000 0.000 0.000 pathlib.py:574(_PathParents) 1 0.000 0.000 0.000 0.000 pathlib.py:602(PurePath) 1 0.000 0.000 0.000 0.000 pathlib.py:631(_parse_args) 1 0.000 0.000 0.000 0.000 pathlib.py:651(_from_parts) 1 0.000 0.000 0.000 0.000 pathlib.py:664(_from_parsed_parts) 1 0.000 0.000 0.000 0.000 pathlib.py:902(parent) 1 0.000 0.000 0.000 0.000 pathlib.py:959(PurePosixPath) 1 0.000 0.000 0.000 0.000 pathlib.py:969(PureWindowsPath) 1 0.000 0.000 0.000 0.000 pathlib.py:982(Path) 1 0.000 0.000 0.000 0.000 pathlib.py:996(__new__) 1 0.000 0.000 0.000 0.000 pickle.py:181() 1 0.000 0.000 0.000 0.000 pickle.py:184(_Framer) 1 0.000 0.000 0.000 0.000 pickle.py:220(_Unframer) 1 0.000 0.000 0.004 0.004 pickle.py:24() 1 0.000 0.000 0.000 0.000 pickle.py:345(_Pickler) 1 0.000 0.000 0.000 0.000 pickle.py:64(PickleError) 1 0.000 0.000 0.000 0.000 pickle.py:68(PicklingError) 1 0.000 0.000 0.000 0.000 pickle.py:75(UnpicklingError) 1 0.000 0.000 0.000 0.000 pickle.py:88(_Stop) 1 0.000 0.000 0.000 0.000 pickle.py:986(_Unpickler) 39 0.000 0.000 0.135 0.003 pkgutil.py:110(iter_modules) 3 0.000 0.000 0.000 0.000 pkgutil.py:133(iter_importer_modules) 36 0.000 0.000 0.110 0.003 pkgutil.py:141(_iter_file_finder_modules) 8 0.025 0.003 0.026 0.003 pkgutil.py:402(get_importer) 1 0.000 0.000 0.007 0.007 platform.py:10() 1 0.000 0.000 0.000 0.000 platform.py:1116(_sys_version) 1 0.000 0.000 0.000 0.000 platform.py:1223(python_implementation) 1 0.000 0.000 0.000 0.000 policy.py:25(EmailPolicy) 1 0.000 0.000 0.006 0.006 policy.py:3() 1 0.000 0.000 0.000 0.000 policy.py:92(__init__) 1 0.000 0.000 0.000 0.000 posixpath.py:11() 1 0.000 0.000 0.000 0.000 pprint.py:35() 1 0.000 0.000 0.000 0.000 pprint.py:72(_safe_key) 1 0.000 0.000 0.000 0.000 pprint.py:98(PrettyPrinter) 1 0.000 0.000 0.000 0.000 proactor_events.py:151(_ProactorReadPipeTransport) 1 0.000 0.000 0.000 0.000 proactor_events.py:21(_ProactorBasePipeTransport) 1 0.000 0.000 0.000 0.000 proactor_events.py:233(_ProactorBaseWritePipeTransport) 1 0.000 0.000 0.000 0.000 proactor_events.py:318(_ProactorWritePipeTransport) 1 0.000 0.000 0.000 0.000 proactor_events.py:340(_ProactorDuplexPipeTransport) 1 0.000 0.000 0.000 0.000 proactor_events.py:352(_ProactorSocketTransport) 1 0.000 0.000 0.000 0.000 proactor_events.py:384(BaseProactorEventLoop) 1 0.000 0.000 0.006 0.006 proactor_events.py:5() 1 0.000 0.000 0.000 0.000 process.py:10() 1 0.000 0.000 0.000 0.000 process.py:102(_ExceptionWithTraceback) 1 0.000 0.000 0.000 0.000 process.py:115(_WorkItem) 1 0.000 0.000 0.000 0.000 process.py:122(_ResultItem) 1 0.000 0.000 0.000 0.000 process.py:128(_CallItem) 1 0.000 0.000 0.000 0.000 process.py:285(AuthenticationString) 1 0.000 0.000 0.000 0.000 process.py:299(_MainProcess) 1 0.000 0.000 0.000 0.000 process.py:301(__init__) 1 0.000 0.000 0.000 0.000 process.py:372(BrokenProcessPool) 1 0.000 0.000 0.000 0.000 process.py:379(ProcessPoolExecutor) 1 0.000 0.000 0.070 0.070 process.py:44() 1 0.000 0.000 0.000 0.000 process.py:62(BaseProcess) 1 0.000 0.000 0.000 0.000 process.py:96(_RemoteTraceback) 1 0.000 0.000 0.000 0.000 protocols.py:1() 1 0.000 0.000 0.000 0.000 protocols.py:103(DatagramProtocol) 1 0.000 0.000 0.000 0.000 protocols.py:116(SubprocessProtocol) 1 0.000 0.000 0.000 0.000 protocols.py:62(Protocol) 1 0.000 0.000 0.000 0.000 protocols.py:7(BaseProtocol) 1 0.000 0.000 0.000 0.000 proxy.py:4() 1 0.000 0.000 0.000 0.000 proxy.py:9(OrderWrt) 1 0.000 0.000 0.000 0.000 python.py:14(Serializer) 1 0.000 0.000 0.000 0.000 python.py:5() 1 0.000 0.000 0.000 0.000 query.py:110(ValuesListIterable) 1 0.000 0.000 0.000 0.000 query.py:1252(InstanceCheckMeta) 1 0.000 0.000 0.000 0.000 query.py:1257(EmptyQuerySet) 1 0.000 0.000 0.000 0.000 query.py:1267(RawQuerySet) 1 0.000 0.000 0.000 0.000 query.py:130(Query) 1 0.000 0.000 0.000 0.000 query.py:1374(Prefetch) 1 0.000 0.000 0.000 0.000 query.py:141(NamedValuesListIterable) 1 0.000 0.000 0.000 0.000 query.py:169(FlatValuesListIterable) 1 0.000 0.000 0.000 0.000 query.py:1710(RelatedPopulator) 1 0.000 0.000 0.000 0.000 query.py:182(QuerySet) 1 0.000 0.000 0.000 0.000 query.py:2093(JoinPromoter) 1 0.000 0.000 0.043 0.043 query.py:3() 1 0.000 0.000 0.000 0.000 query.py:37(BaseIterable) 1 0.000 0.000 0.000 0.000 query.py:44(ModelIterable) 1 0.000 0.000 0.000 0.000 query.py:62(RawQuery) 1 0.000 0.000 0.045 0.045 query.py:8() 1 0.000 0.000 0.000 0.000 query.py:88(ValuesIterable) 1 0.000 0.000 0.000 0.000 query_utils.py:115(DeferredAttribute) 35 0.000 0.000 0.000 0.000 query_utils.py:120(__init__) 16 0.000 0.000 0.000 0.000 query_utils.py:123(__get__) 1 0.000 0.000 0.000 0.000 query_utils.py:155(RegisterLookupMixin) 45 0.000 0.000 0.001 0.000 query_utils.py:196(_clear_cached_lookups) 45 0.000 0.000 0.001 0.000 query_utils.py:201(register_lookup) 1 0.000 0.000 0.000 0.000 query_utils.py:22(InvalidQuery) 1628/546 0.001 0.000 0.001 0.000 query_utils.py:27(subclasses) 1 0.000 0.000 0.000 0.000 query_utils.py:299(FilteredRelation) 1 0.000 0.000 0.000 0.000 query_utils.py:33(QueryWrapper) 1 0.000 0.000 0.000 0.000 query_utils.py:47(Q) 1 0.000 0.000 0.000 0.000 query_utils.py:57(__init__) 1 0.000 0.000 0.015 0.015 query_utils.py:7() 1 0.000 0.000 0.000 0.000 queue.py:1() 1 0.000 0.000 0.000 0.000 queue.py:13(Empty) 1 0.000 0.000 0.000 0.000 queue.py:17(Full) 1 0.000 0.000 0.000 0.000 queue.py:21(Queue) 1 0.000 0.000 0.000 0.000 queue.py:214(PriorityQueue) 1 0.000 0.000 0.000 0.000 queue.py:233(LifoQueue) 1 0.000 0.000 0.000 0.000 queues.py:1() 1 0.000 0.000 0.000 0.000 queues.py:14(QueueEmpty) 1 0.000 0.000 0.000 0.000 queues.py:21(QueueFull) 1 0.000 0.000 0.000 0.000 queues.py:227(PriorityQueue) 1 0.000 0.000 0.000 0.000 queues.py:243(LifoQueue) 1 0.000 0.000 0.000 0.000 queues.py:28(Queue) 1 0.000 0.000 0.000 0.000 quopri.py:3() 1 0.000 0.000 0.000 0.000 quoprimime.py:27() 1 0.000 0.000 0.000 0.000 quoprimime.py:55() 1 0.000 0.000 0.004 0.004 random.py:38() 1 0.000 0.000 0.000 0.000 random.py:666(SystemRandom) 1 0.000 0.000 0.000 0.000 random.py:688(seed) 1 0.000 0.000 0.000 0.000 random.py:71(Random) 2 0.000 0.000 0.000 0.000 random.py:87(__init__) 1 0.000 0.000 0.000 0.000 random.py:96(seed) 105 0.000 0.000 0.001 0.000 re.py:169(match) 1 0.000 0.000 0.000 0.000 re.py:224(finditer) 178 0.000 0.000 0.068 0.000 re.py:231(compile) 48 0.000 0.000 0.000 0.000 re.py:249(escape) 284 0.001 0.000 0.069 0.000 re.py:286(_compile) 1 0.000 0.000 0.000 0.000 re.py:314(_compile_repl) 13 0.000 0.000 0.000 0.000 re.py:324(_subx) 21 0.000 0.000 0.000 0.000 re.py:330(filter) 1 0.000 0.000 0.000 0.000 reduction.py:10() 1 0.000 0.000 0.000 0.000 reduction.py:100(DupHandle) 1 0.000 0.000 0.000 0.000 reduction.py:204(_C) 1 0.000 0.000 0.000 0.000 reduction.py:244(AbstractReducer) 1 0.000 0.000 0.000 0.000 reduction.py:33(ForkingPickler) 7 0.000 0.000 0.000 0.000 reduction.py:43(register) 1 0.000 0.000 0.000 0.000 regex_helper.py:29(Choice) 1 0.000 0.000 0.000 0.000 regex_helper.py:33(Group) 1 0.000 0.000 0.000 0.000 regex_helper.py:37(NonCapture) 1 0.000 0.000 0.000 0.000 regex_helper.py:7() 2 0.000 0.000 0.006 0.003 registry.py:1() 8 0.000 0.000 0.000 0.000 registry.py:100() 1 0.000 0.000 0.000 0.000 registry.py:102() 19 0.000 0.000 0.000 0.000 registry.py:124(check_apps_ready) 1 0.000 0.000 0.000 0.000 registry.py:13(Apps) 3 0.000 0.000 0.000 0.000 registry.py:134(get_app_configs) 1 0.000 0.000 0.000 0.000 registry.py:139(get_app_config) 1 0.000 0.000 0.000 0.000 registry.py:177(get_model) 1 0.000 0.000 0.000 0.000 registry.py:20(__init__) 9 0.000 0.000 0.000 0.000 registry.py:204(register_model) 1 0.000 0.000 0.000 0.000 registry.py:21(CheckRegistry) 1 0.000 0.000 0.000 0.000 registry.py:23(__init__) 13 0.000 0.000 0.000 0.000 registry.py:235(get_containing_app_config) 13 0.000 0.000 0.000 0.000 registry.py:252() 29 0.000 0.000 0.000 0.000 registry.py:254(get_registered_model) 31 0.000 0.000 0.000 0.000 registry.py:27(register) 10 0.000 0.000 0.000 0.000 registry.py:353(clear_cache) 42/29 0.000 0.000 0.000 0.000 registry.py:369(lazy_model_operation) 29/16 0.000 0.000 0.000 0.000 registry.py:392(apply_next_model) 9 0.000 0.000 0.000 0.000 registry.py:408(do_pending_operations) 31 0.000 0.000 0.000 0.000 registry.py:45(inner) 1 0.000 0.000 1.142 1.142 registry.py:59(populate) 1 0.000 0.000 0.000 0.000 registry.py:6(Tags) 1 0.000 0.000 0.023 0.023 related.py:1() 3 0.000 0.000 0.151 0.050 related.py:1029(create_many_to_many_intermediary_model) 3 0.000 0.000 0.000 0.000 related.py:1032(set_managed) 1 0.000 0.000 0.000 0.000 related.py:1076(ManyToManyField) 3 0.000 0.000 0.000 0.000 related.py:1096(__init__) 3 0.000 0.000 0.000 0.000 related.py:1496(_get_m2m_db_table) 7 0.000 0.000 0.151 0.022 related.py:1557(contribute_to_class) 3 0.000 0.000 0.000 0.000 related.py:1594(contribute_to_related_class) 3 0.000 0.000 0.000 0.000 related.py:1612(set_attributes_from_rel) 14 0.000 0.000 0.001 0.000 related.py:291(contribute_to_class) 10 0.000 0.000 0.000 0.000 related.py:317(resolve_related_class) 19 0.000 0.000 0.000 0.000 related.py:36(resolve_relation) 7 0.000 0.000 0.000 0.000 related.py:379(set_attributes_from_rel) 10 0.000 0.000 0.000 0.000 related.py:388(do_related_class) 1 0.000 0.000 0.000 0.000 related.py:446(ForeignObject) 7 0.000 0.000 0.000 0.000 related.py:462(__init__) 13 0.000 0.000 0.000 0.000 related.py:61(lazy_related_operation) 7 0.000 0.000 0.000 0.000 related.py:736(contribute_to_class) 7 0.000 0.000 0.000 0.000 related.py:740(contribute_to_related_class) 13 0.000 0.000 0.000 0.000 related.py:76() 1 0.000 0.000 0.000 0.000 related.py:761(ForeignKey) 42 0.000 0.000 0.000 0.000 related.py:77() 7 0.000 0.000 0.000 0.000 related.py:784(__init__) 1 0.000 0.000 0.000 0.000 related.py:82(RelatedField) 7 0.000 0.000 0.000 0.000 related.py:915(get_attname) 7 0.000 0.000 0.000 0.000 related.py:918(get_attname_column) 7 0.000 0.000 0.000 0.000 related.py:941(contribute_to_related_class) 1 0.000 0.000 0.000 0.000 related.py:983(OneToOneField) 1 0.000 0.000 0.000 0.000 related_descriptors.py:248(ForwardOneToOneDescriptor) 1 0.000 0.000 0.000 0.000 related_descriptors.py:296(ReverseOneToOneDescriptor) 1 0.000 0.000 0.000 0.000 related_descriptors.py:456(ReverseManyToOneDescriptor) 11 0.000 0.000 0.000 0.000 related_descriptors.py:472(__init__) 4 0.000 0.000 0.000 0.000 related_descriptors.py:485(__get__) 1 0.000 0.000 0.000 0.000 related_descriptors.py:64() 1 0.000 0.000 0.000 0.000 related_descriptors.py:703(ManyToManyDescriptor) 1 0.000 0.000 0.000 0.000 related_descriptors.py:72(ForwardManyToOneDescriptor) 10 0.000 0.000 0.000 0.000 related_descriptors.py:720(__init__) 7 0.000 0.000 0.000 0.000 related_descriptors.py:85(__init__) 1 0.000 0.000 0.007 0.007 related_lookups.py:1() 1 0.000 0.000 0.000 0.000 related_lookups.py:102(RelatedLookupMixin) 1 0.000 0.000 0.000 0.000 related_lookups.py:133(RelatedExact) 1 0.000 0.000 0.000 0.000 related_lookups.py:137(RelatedLessThan) 1 0.000 0.000 0.000 0.000 related_lookups.py:141(RelatedGreaterThan) 1 0.000 0.000 0.000 0.000 related_lookups.py:145(RelatedGreaterThanOrEqual) 1 0.000 0.000 0.000 0.000 related_lookups.py:149(RelatedLessThanOrEqual) 1 0.000 0.000 0.000 0.000 related_lookups.py:153(RelatedIsNull) 1 0.000 0.000 0.000 0.000 related_lookups.py:46(RelatedIn) 1 0.000 0.000 0.000 0.000 related_lookups.py:7(MultiColSource) 1 0.000 0.000 0.604 0.604 renderers.py:1() 1 0.000 0.000 0.000 0.000 renderers.py:25(BaseRenderer) 1 0.000 0.000 0.000 0.000 renderers.py:34(EngineMixin) 1 0.000 0.000 0.000 0.000 renderers.py:48(DjangoTemplates) 1 0.000 0.000 0.000 0.000 renderers.py:56(Jinja2) 1 0.000 0.000 0.000 0.000 renderers.py:64(TemplatesSetting) 1 0.000 0.000 0.458 0.458 request.py:1() 1 0.000 0.000 0.000 0.000 request.py:1021(HTTPBasicAuthHandler) 1 0.000 0.000 0.000 0.000 request.py:1032(ProxyBasicAuthHandler) 1 0.000 0.000 0.000 0.000 request.py:1051(AbstractDigestAuthHandler) 1 0.000 0.000 0.000 0.000 request.py:1195(HTTPDigestAuthHandler) 1 0.000 0.000 0.000 0.000 request.py:1213(ProxyDigestAuthHandler) 1 0.000 0.000 0.000 0.000 request.py:1225(AbstractHTTPHandler) 1 0.000 0.000 0.000 0.000 request.py:1343(HTTPHandler) 1 0.000 0.000 0.000 0.000 request.py:1352(HTTPSHandler) 1 0.000 0.000 0.000 0.000 request.py:1367(HTTPCookieProcessor) 1 0.000 0.000 0.000 0.000 request.py:1385(UnknownHandler) 1 0.000 0.000 0.000 0.000 request.py:1443(FileHandler) 1 0.000 0.000 0.000 0.000 request.py:1500(FTPHandler) 1 0.000 0.000 0.000 0.000 request.py:1558(CacheFTPHandler) 1 0.000 0.000 0.000 0.000 request.py:1611(DataHandler) 1 0.000 0.000 0.000 0.000 request.py:1664(URLopener) 1 0.000 0.000 0.000 0.000 request.py:2110(FancyURLopener) 1 0.000 0.000 0.000 0.000 request.py:2363(ftpwrapper) 1 0.000 0.000 0.000 0.000 request.py:24(UnreadablePostError) 1 0.000 0.000 0.000 0.000 request.py:28(RawPostDataException) 1 0.000 0.000 0.000 0.000 request.py:324(Request) 1 0.000 0.000 0.000 0.000 request.py:351(QueryDict) 1 0.000 0.000 0.000 0.000 request.py:37(HttpRequest) 1 0.000 0.000 0.000 0.000 request.py:434(OpenerDirector) 1 0.000 0.000 0.000 0.000 request.py:612(BaseHandler) 1 0.000 0.000 0.000 0.000 request.py:631(HTTPErrorProcessor) 1 0.000 0.000 0.000 0.000 request.py:648(HTTPDefaultErrorHandler) 1 0.000 0.000 0.000 0.000 request.py:652(HTTPRedirectHandler) 1 0.000 0.000 0.017 0.017 request.py:68() 1 0.000 0.000 0.000 0.000 request.py:794(ProxyHandler) 1 0.000 0.000 0.000 0.000 request.py:836(HTTPPasswordMgr) 1 0.000 0.000 0.000 0.000 request.py:900(HTTPPasswordMgrWithDefaultRealm) 1 0.000 0.000 0.000 0.000 request.py:910(HTTPPasswordMgrWithPriorAuth) 1 0.000 0.000 0.001 0.001 request.py:941(AbstractBasicAuthHandler) 1 0.000 0.000 0.000 0.000 resolvers.py:103(CheckURLMixin) 1 0.000 0.000 0.000 0.000 resolvers.py:136(RegexPattern) 1 0.000 0.000 0.000 0.000 resolvers.py:234(RoutePattern) 1 0.000 0.000 0.000 0.000 resolvers.py:277(LocalePrefixPattern) 1 0.000 0.000 0.000 0.000 resolvers.py:29(ResolverMatch) 1 0.000 0.000 0.000 0.000 resolvers.py:311(URLPattern) 1 0.000 0.000 0.000 0.000 resolvers.py:364(URLResolver) 1 0.000 0.000 0.026 0.026 resolvers.py:7() 1 0.000 0.000 0.000 0.000 resolvers.py:80(LocaleRegexDescriptor) 2 0.000 0.000 0.000 0.000 resolvers.py:81(__init__) 2 0.000 0.000 1.463 0.731 response.py:1() 1 0.000 0.000 0.000 0.000 response.py:10(SimpleTemplateResponse) 1 0.000 0.000 0.000 0.000 response.py:139(TemplateResponse) 1 0.000 0.000 0.000 0.000 response.py:14(addbase) 1 0.000 0.000 0.000 0.000 response.py:22(BadHeaderError) 1 0.000 0.000 0.000 0.000 response.py:26(HttpResponseBase) 1 0.000 0.000 0.000 0.000 response.py:273(HttpResponse) 1 0.000 0.000 0.000 0.000 response.py:339(StreamingHttpResponse) 1 0.000 0.000 0.000 0.000 response.py:37(addclosehook) 1 0.000 0.000 0.000 0.000 response.py:384(FileResponse) 1 0.000 0.000 0.000 0.000 response.py:402(HttpResponseRedirectBase) 1 0.000 0.000 0.000 0.000 response.py:423(HttpResponseRedirect) 1 0.000 0.000 0.000 0.000 response.py:427(HttpResponsePermanentRedirect) 1 0.000 0.000 0.000 0.000 response.py:431(HttpResponseNotModified) 1 0.000 0.000 0.000 0.000 response.py:445(HttpResponseBadRequest) 1 0.000 0.000 0.000 0.000 response.py:449(HttpResponseNotFound) 1 0.000 0.000 0.000 0.000 response.py:453(HttpResponseForbidden) 1 0.000 0.000 0.000 0.000 response.py:457(HttpResponseNotAllowed) 1 0.000 0.000 0.000 0.000 response.py:473(HttpResponseGone) 1 0.000 0.000 0.000 0.000 response.py:477(HttpResponseServerError) 1 0.000 0.000 0.000 0.000 response.py:481(Http404) 1 0.000 0.000 0.000 0.000 response.py:485(JsonResponse) 1 0.000 0.000 0.000 0.000 response.py:57(addinfo) 1 0.000 0.000 0.000 0.000 response.py:6(ContentNotRenderedError) 1 0.000 0.000 0.000 0.000 response.py:68(addinfourl) 1 0.000 0.000 0.000 0.000 response.py:7() 1 0.000 0.000 0.000 0.000 reverse_related.py:10() 17 0.000 0.000 0.000 0.000 reverse_related.py:129(is_hidden) 4 0.000 0.000 0.000 0.000 reverse_related.py:149(get_accessor_name) 1 0.000 0.000 0.000 0.000 reverse_related.py:177(ManyToOneRel) 1 0.000 0.000 0.000 0.000 reverse_related.py:19(ForeignObjectRel) 7 0.000 0.000 0.000 0.000 reverse_related.py:192(__init__) 7 0.000 0.000 0.000 0.000 reverse_related.py:219(set_field_name) 1 0.000 0.000 0.000 0.000 reverse_related.py:223(OneToOneRel) 1 0.000 0.000 0.000 0.000 reverse_related.py:245(ManyToManyRel) 3 0.000 0.000 0.000 0.000 reverse_related.py:253(__init__) 10 0.000 0.000 0.000 0.000 reverse_related.py:37(__init__) 4 0.000 0.000 0.000 0.000 reverse_related.py:77(related_model) 2 0.000 0.000 0.647 0.323 runserver.py:1() 1 0.000 0.000 569.246 569.246 runserver.py:100(run) 1 0.000 0.000 0.000 0.000 runserver.py:11(add_arguments) 1 0.000 0.000 0.000 0.000 runserver.py:23(Command) 1 0.000 0.000 0.000 0.000 runserver.py:37(add_arguments) 1 0.000 0.000 569.246 569.246 runserver.py:55(execute) 1 0.000 0.000 569.246 569.246 runserver.py:67(handle) 1 0.000 0.000 0.000 0.000 runserver.py:8(Command) 1 0.000 0.000 0.008 0.008 runtime.py:10() 1 0.000 0.000 0.000 0.000 runtime.py:101(ContextMeta) 1 0.000 0.000 0.000 0.000 runtime.py:103(__new__) 1 0.000 0.000 0.000 0.000 runtime.py:133(Context) 3 0.000 0.000 0.000 0.000 runtime.py:279(_all) 1 0.000 0.000 0.000 0.000 runtime.py:324(BlockReference) 1 0.000 0.000 0.000 0.000 runtime.py:351(LoopContextBase) 1 0.000 0.000 0.000 0.000 runtime.py:421(LoopContext) 1 0.000 0.000 0.000 0.000 runtime.py:460(LoopContextIterator) 1 0.000 0.000 0.000 0.000 runtime.py:482(Macro) 1 0.000 0.000 0.000 0.000 runtime.py:591(Undefined) 1 0.000 0.000 0.000 0.000 runtime.py:758(DebugUndefined) 1 0.000 0.000 0.000 0.000 runtime.py:785(StrictUndefined) 1 0.000 0.000 0.000 0.000 runtime.py:80(TemplateReference) 1 0.000 0.000 0.000 0.000 safestring.py:11(SafeData) 1 0.000 0.000 0.000 0.000 safestring.py:21(SafeBytes) 1 0.000 0.000 0.000 0.000 safestring.py:42(SafeText) 1 0.000 0.000 0.000 0.000 safestring.py:6() 1 0.000 0.000 0.001 0.001 scanner.py:2() 2 0.000 0.000 0.020 0.010 schema.py:1() 1 0.000 0.000 0.000 0.000 schema.py:13(DatabaseSchemaEditor) 1 0.000 0.000 0.000 0.000 schema.py:42(BaseDatabaseSchemaEditor) 1 0.000 0.000 0.000 0.000 selector_events.py:1049(_SelectorDatagramTransport) 1 0.000 0.000 0.000 0.000 selector_events.py:5() 1 0.000 0.000 0.000 0.000 selector_events.py:54(BaseSelectorEventLoop) 1 0.000 0.000 0.000 0.000 selector_events.py:540(_SelectorTransport) 1 0.000 0.000 0.000 0.000 selector_events.py:683(_SelectorSocketTransport) 1 0.000 0.000 0.000 0.000 selector_events.py:817(_SelectorSslTransport) 1 0.000 0.000 0.000 0.000 selectors.py:205(_BaseSelectorImpl) 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) 1 0.000 0.000 0.005 0.005 selectors.py:5() 1 0.000 0.000 0.000 0.000 selectors.py:59(_SelectorMapping) 1 0.000 0.000 0.000 0.000 selectors.py:79(BaseSelector) 1 0.000 0.000 0.000 0.000 server.py:130(HTTPServer) 1 0.000 0.000 0.000 0.000 server.py:142(BaseHTTPRequestHandler) 1 0.000 0.000 0.171 0.171 server.py:32() 1 0.000 0.000 0.000 0.000 server.py:613() 1 0.000 0.000 0.171 0.171 server.py:619(SimpleHTTPRequestHandler) 1 0.000 0.000 0.000 0.000 server.py:910(CGIHTTPRequestHandler) 1 0.000 0.000 0.000 0.000 sessions.py:1() 3 0.000 0.000 0.000 0.000 sessions.py:36(add_httponly_message) 3 0.000 0.000 0.000 0.000 sessions.py:6(add_session_cookie_message) 1 0.000 0.000 0.000 0.000 settings.py:11() 1 0.000 0.000 0.023 0.023 shutil.py:5() 1 0.000 0.000 0.000 0.000 shutil.py:55(Error) 1 0.000 0.000 0.000 0.000 shutil.py:58(SameFileError) 1 0.000 0.000 0.000 0.000 shutil.py:61(SpecialFileError) 1 0.000 0.000 0.000 0.000 shutil.py:65(ExecError) 1 0.000 0.000 0.000 0.000 shutil.py:68(ReadError) 1 0.000 0.000 0.000 0.000 shutil.py:71(RegistryError) 1 0.000 0.000 0.001 0.001 signal.py:1() 28 0.000 0.000 0.000 0.000 signal.py:10() 29 0.000 0.000 0.000 0.000 signal.py:17() 4 0.000 0.000 0.073 0.018 signals.py:1() 1 0.000 0.000 0.000 0.000 signals.py:9(ModelSignal) 1 0.000 0.000 0.000 0.000 signing.py:146(Signer) 1 0.000 0.000 0.000 0.000 signing.py:174(TimestampSigner) 1 0.000 0.000 0.129 0.129 signing.py:34() 1 0.000 0.000 0.000 0.000 signing.py:52(BadSignature) 1 0.000 0.000 0.000 0.000 signing.py:57(SignatureExpired) 1 0.000 0.000 0.000 0.000 signing.py:81(JSONSerializer) 1 0.000 0.000 0.208 0.208 simple_server.py:11() 1 0.000 0.000 0.000 0.000 simple_server.py:28(ServerHandler) 1 0.000 0.000 0.000 0.000 simple_server.py:42(WSGIServer) 1 0.000 0.000 0.000 0.000 simple_server.py:71(WSGIRequestHandler) 1 0.000 0.000 0.001 0.001 six.py:1() 1 0.000 0.000 0.000 0.000 six.py:101(MovedModule) 44 0.000 0.000 0.000 0.000 six.py:103(__init__) 1 0.000 0.000 0.000 0.000 six.py:112(_resolve) 1 0.000 0.000 0.000 0.000 six.py:122(_LazyModule) 6 0.000 0.000 0.000 0.000 six.py:124(__init__) 1 0.000 0.000 0.000 0.000 six.py:137(MovedAttribute) 83 0.000 0.000 0.000 0.000 six.py:139(__init__) 1 0.000 0.000 0.000 0.000 six.py:162(_SixMetaPathImporter) 1 0.000 0.000 0.000 0.000 six.py:171(__init__) 51 0.000 0.000 0.000 0.000 six.py:175(_add_module) 5 0.000 0.000 0.000 0.000 six.py:179(_get_module) 10 0.000 0.000 0.000 0.000 six.py:182(find_module) 1 0.000 0.000 0.000 0.000 six.py:227(_MovedItems) 1 0.000 0.000 0.000 0.000 six.py:318(Module_six_moves_urllib_parse) 1 0.000 0.000 0.000 0.000 six.py:358(Module_six_moves_urllib_error) 1 0.000 0.000 0.000 0.000 six.py:378(Module_six_moves_urllib_request) 1 0.000 0.000 0.000 0.000 six.py:428(Module_six_moves_urllib_response) 1 0.000 0.000 0.000 0.000 six.py:449(Module_six_moves_urllib_robotparser) 1 0.000 0.000 0.000 0.000 six.py:467(Module_six_moves_urllib) 8 0.000 0.000 0.000 0.000 six.py:73(_add_doc) 1 0.000 0.000 0.000 0.000 six.py:78(_import_module) 1 0.000 0.000 0.000 0.000 six.py:84(_LazyDescr) 127 0.000 0.000 0.000 0.000 six.py:86(__init__) 1 0.000 0.000 0.000 0.000 six.py:89(__get__) 1 0.000 0.000 0.000 0.000 smartif.py:11(TokenBase) 1 0.000 0.000 0.000 0.000 smartif.py:114(Literal) 1 0.000 0.000 0.000 0.000 smartif.py:140(EndToken) 1 0.000 0.000 0.000 0.000 smartif.py:150(IfParser) 1 0.000 0.000 0.000 0.000 smartif.py:3() 12 0.000 0.000 0.000 0.000 smartif.py:43(infix) 12 0.000 0.000 0.000 0.000 smartif.py:48(Operator) 1 0.000 0.000 0.000 0.000 smartif.py:68(prefix) 1 0.000 0.000 0.000 0.000 smartif.py:73(Operator) 1 0.000 0.000 0.000 0.000 socket.py:130(_GiveupOnSendfile) 1 0.000 0.000 0.000 0.000 socket.py:133(socket) 1 0.000 0.000 0.014 0.014 socket.py:47() 1 0.000 0.000 0.000 0.000 socket.py:543(SocketIO) 168 0.000 0.000 0.000 0.000 socket.py:76() 169 0.000 0.000 0.000 0.000 socket.py:81() 170 0.000 0.000 0.000 0.000 socket.py:86() 171 0.000 0.000 0.000 0.000 socket.py:91() 1 0.000 0.000 0.000 0.000 socketserver.py:119() 1 0.000 0.000 0.000 0.000 socketserver.py:157(BaseServer) 1 0.000 0.000 0.000 0.000 socketserver.py:391(TCPServer) 1 0.000 0.000 0.000 0.000 socketserver.py:517(UDPServer) 1 0.000 0.000 0.000 0.000 socketserver.py:632(ThreadingMixIn) 1 0.000 0.000 0.000 0.000 socketserver.py:682(ThreadingUDPServer) 1 0.000 0.000 0.000 0.000 socketserver.py:683(ThreadingTCPServer) 1 0.000 0.000 0.000 0.000 socketserver.py:697(BaseRequestHandler) 1 0.000 0.000 0.000 0.000 socketserver.py:743(StreamRequestHandler) 1 0.000 0.000 0.000 0.000 socketserver.py:788(_SocketWriter) 1 0.000 0.000 0.000 0.000 socketserver.py:807(DatagramRequestHandler) 1 0.000 0.000 0.000 0.000 special.py:1() 1 0.000 0.000 0.000 0.000 special.py:133(RunPython) 1 0.000 0.000 0.000 0.000 special.py:6(SeparateDatabaseAndState) 1 0.000 0.000 0.000 0.000 special.py:63(RunSQL) 222 0.000 0.000 0.000 0.000 sre_compile.py:102(fixup) 392 0.001 0.000 0.008 0.000 sre_compile.py:223(_compile_charset) 392 0.004 0.000 0.005 0.000 sre_compile.py:250(_optimize_charset) 59 0.000 0.000 0.001 0.000 sre_compile.py:376(_mk_bitmap) 59 0.000 0.000 0.000 0.000 sre_compile.py:378() 6 0.000 0.000 0.000 0.000 sre_compile.py:381(_bytes_to_codes) 449 0.001 0.000 0.001 0.000 sre_compile.py:388(_simple) 29 0.000 0.000 0.000 0.000 sre_compile.py:393(_generate_overlap_table) 164/121 0.000 0.000 0.000 0.000 sre_compile.py:414(_get_literal_prefix) 92 0.000 0.000 0.000 0.000 sre_compile.py:441(_get_charset_prefix) 139 0.001 0.000 0.004 0.000 sre_compile.py:482(_compile_info) 278 0.000 0.000 0.000 0.000 sre_compile.py:539(isstring) 139 0.000 0.000 0.029 0.000 sre_compile.py:542(_code) 139 0.001 0.000 0.066 0.000 sre_compile.py:557(compile) 1074/139 0.006 0.000 0.025 0.000 sre_compile.py:64(_compile) 1 0.000 0.000 0.000 0.000 sre_parse.py:101(checklookbehindgroup) 1076 0.001 0.000 0.001 0.000 sre_parse.py:111(__init__) 1658 0.001 0.000 0.001 0.000 sre_parse.py:159(__len__) 13 0.000 0.000 0.000 0.000 sre_parse.py:161(__delitem__) 4315 0.003 0.000 0.004 0.000 sre_parse.py:163(__getitem__) 449 0.000 0.000 0.000 0.000 sre_parse.py:167(__setitem__) 1513 0.001 0.000 0.001 0.000 sre_parse.py:171(append) 1710/797 0.003 0.000 0.004 0.000 sre_parse.py:173(getwidth) 140 0.000 0.000 0.001 0.000 sre_parse.py:223(__init__) 8268 0.004 0.000 0.004 0.000 sre_parse.py:232(__next) 3064 0.001 0.000 0.002 0.000 sre_parse.py:248(match) 6436 0.003 0.000 0.006 0.000 sre_parse.py:253(get) 15 0.000 0.000 0.000 0.000 sre_parse.py:257(getwhile) 81 0.000 0.000 0.000 0.000 sre_parse.py:266(getuntil) 1400 0.001 0.000 0.001 0.000 sre_parse.py:285(tell) 1 0.000 0.000 0.000 0.000 sre_parse.py:287(seek) 206 0.000 0.000 0.000 0.000 sre_parse.py:294(_class_escape) 366 0.001 0.000 0.001 0.000 sre_parse.py:342(_escape) 441/139 0.002 0.000 0.032 0.000 sre_parse.py:407(_parse_sub) 1 0.000 0.000 0.000 0.000 sre_parse.py:452() 563/158 0.011 0.000 0.031 0.000 sre_parse.py:470(_parse) 139 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) 2 0.000 0.000 0.000 0.000 sre_parse.py:784(_parse_flags) 692 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) 139 0.000 0.000 0.001 0.000 sre_parse.py:828(fix_flags) 203 0.000 0.000 0.001 0.000 sre_parse.py:84(opengroup) 139 0.001 0.000 0.035 0.000 sre_parse.py:844(parse) 1 0.000 0.000 0.000 0.000 sre_parse.py:876(parse_template) 1 0.000 0.000 0.000 0.000 sre_parse.py:885(addgroup) 203 0.000 0.000 0.002 0.000 sre_parse.py:96(closegroup) 21 0.000 0.000 0.000 0.000 sre_parse.py:963(expand_template) 1 0.000 0.000 0.000 0.000 sre_parse.py:98(checkgroup) 104 0.000 0.000 0.000 0.000 ssl.py:124() 104 0.000 0.000 0.000 0.000 ssl.py:129() 104 0.000 0.000 0.000 0.000 ssl.py:134() 104 0.000 0.000 0.000 0.000 ssl.py:139() 104 0.000 0.000 0.000 0.000 ssl.py:144() 104 0.000 0.000 0.000 0.000 ssl.py:149() 1 0.000 0.000 0.000 0.000 ssl.py:154() 1 0.000 0.000 0.000 0.000 ssl.py:221(CertificateError) 1 0.000 0.000 0.000 0.000 ssl.py:355(_ASN1Object) 4 0.000 0.000 0.000 0.000 ssl.py:360(__new__) 1 0.000 0.000 0.000 0.000 ssl.py:376(Purpose) 1 0.000 0.000 0.000 0.000 ssl.py:383(SSLContext) 1 0.000 0.000 0.000 0.000 ssl.py:567(SSLObject) 1 0.000 0.000 0.000 0.000 ssl.py:718(SSLSocket) 1 0.000 0.000 0.019 0.019 ssl.py:91() 1 0.000 0.000 0.000 0.000 sslproto.py:1() 1 0.000 0.000 0.000 0.000 sslproto.py:294(_SSLProtocolTransport) 1 0.000 0.000 0.000 0.000 sslproto.py:405(SSLProtocol) 1 0.000 0.000 0.000 0.000 sslproto.py:48(_SSLPipe) 1 0.000 0.000 0.000 0.000 state.py:1() 1 0.000 0.000 0.000 0.000 state.py:230(AppConfigStub) 1 0.000 0.000 0.000 0.000 state.py:246(StateApps) 1 0.000 0.000 0.000 0.000 state.py:348(ModelState) 1 0.000 0.000 0.000 0.000 state.py:80(ProjectState) 1 0.000 0.000 0.140 0.140 static.py:1() 1 0.000 0.000 0.000 0.000 static.py:11(PrefixNode) 1 0.000 0.000 0.000 0.000 static.py:4() 1 0.000 0.000 0.000 0.000 static.py:93(StaticNode) 1 0.000 0.000 0.016 0.016 storage.py:1() 1 0.000 0.000 0.000 0.000 storage.py:166(FileSystemStorage) 1 0.000 0.000 0.000 0.000 storage.py:22(Storage) 1 0.000 0.000 0.000 0.000 storage.py:359(DefaultStorage) 1 0.000 0.000 0.000 0.000 streams.py:1() 1 0.000 0.000 0.000 0.000 streams.py:154(FlowControlMixin) 1 0.000 0.000 0.000 0.000 streams.py:220(StreamReaderProtocol) 1 0.000 0.000 0.000 0.000 streams.py:25(IncompleteReadError) 1 0.000 0.000 0.000 0.000 streams.py:271(StreamWriter) 1 0.000 0.000 0.000 0.000 streams.py:342(StreamReader) 1 0.000 0.000 0.000 0.000 streams.py:42(LimitOverrunError) 1 0.000 0.000 0.002 0.002 string.py:15() 1 0.000 0.000 0.000 0.000 string.py:173(Formatter) 1 0.000 0.000 0.000 0.000 string.py:55(_TemplateMetaclass) 1 0.000 0.000 0.002 0.002 string.py:65(__init__) 1 0.000 0.000 0.000 0.000 string.py:77(Template) 1 0.000 0.000 0.000 0.000 subprocess.py:1() 1 0.000 0.000 0.000 0.000 subprocess.py:1023(_internal_poll) 3 0.000 0.000 569.244 189.748 subprocess.py:1040(wait) 1 0.000 0.000 0.000 0.000 subprocess.py:107(Process) 1 0.000 0.000 0.000 0.000 subprocess.py:1133(terminate) 1 0.000 0.000 0.000 0.000 subprocess.py:129(STARTUPINFO) 1 0.000 0.000 0.000 0.000 subprocess.py:176(Handle) 1 0.000 0.000 0.000 0.000 subprocess.py:179(Close) 1 0.000 0.000 0.000 0.000 subprocess.py:18(SubprocessStreamProtocol) 1 0.000 0.000 0.000 0.000 subprocess.py:203(_cleanup) 1 0.000 0.000 569.246 569.246 subprocess.py:259(call) 1 0.000 0.000 0.000 0.000 subprocess.py:339(CompletedProcess) 1 0.000 0.000 0.021 0.021 subprocess.py:42() 1 0.000 0.000 0.000 0.000 subprocess.py:422(list2cmdline) 1 0.000 0.000 0.000 0.000 subprocess.py:542(Popen) 1 0.000 0.000 0.000 0.000 subprocess.py:57(SubprocessError) 1 0.000 0.000 0.002 0.002 subprocess.py:588(__init__) 1 0.000 0.000 0.000 0.000 subprocess.py:60(CalledProcessError) 1 0.000 0.000 0.000 0.000 subprocess.py:743(__enter__) 1 0.000 0.000 0.000 0.000 subprocess.py:746(__exit__) 1 0.000 0.000 0.000 0.000 subprocess.py:758(__del__) 1 0.000 0.000 0.000 0.000 subprocess.py:878(_get_handles) 1 0.000 0.000 0.002 0.002 subprocess.py:959(_execute_child) 1 0.000 0.000 0.000 0.000 subprocess.py:97(TimeoutExpired) 1 0.000 0.000 0.000 0.000 subqueries.py:16(DeleteQuery) 1 0.000 0.000 0.000 0.000 subqueries.py:169(InsertQuery) 1 0.000 0.000 0.000 0.000 subqueries.py:183(AggregateQuery) 1 0.000 0.000 0.000 0.000 subqueries.py:3() 1 0.000 0.000 0.000 0.000 subqueries.py:79(UpdateQuery) 1 0.000 0.000 0.000 0.000 tasks.py:1() 1 0.000 0.000 0.000 0.000 tasks.py:23(Task) 1 0.000 0.000 0.000 0.000 tasks.py:540(_GatheringFuture) 1 0.000 0.000 0.029 0.029 temp.py:17() 1 0.000 0.000 0.000 0.000 temp.py:28(TemporaryFile) 1 0.000 0.000 0.000 0.000 tempfile.py:136(_RandomNameSequence) 1 0.000 0.000 0.026 0.026 tempfile.py:24() 1 0.000 0.000 0.000 0.000 tempfile.py:418(_TemporaryFileCloser) 1 0.000 0.000 0.000 0.000 tempfile.py:461(_TemporaryFileWrapper) 1 0.000 0.000 0.000 0.000 tempfile.py:631(SpooledTemporaryFile) 1 0.000 0.000 0.000 0.000 tempfile.py:779(TemporaryDirectory) 1 0.000 0.000 0.000 0.000 templates.py:1() 1 0.000 0.000 0.000 0.000 termcolors.py:137(parse_color_setting) 1 0.000 0.000 0.000 0.000 termcolors.py:3() 1 0.000 0.000 0.000 0.000 termcolors.py:6() 1 0.000 0.000 0.000 0.000 termcolors.py:7() 1 0.000 0.000 0.000 0.000 tests.py:10() 1 0.000 0.000 0.022 0.022 text.py:1() 1 0.000 0.000 0.000 0.000 text.py:14(MIMEText) 1 0.000 0.000 0.000 0.000 text.py:287(StreamingBuffer) 13 0.000 0.000 0.000 0.000 text.py:418(camel_case_to_spaces) 1 0.000 0.000 0.000 0.000 text.py:5() 1 0.000 0.000 0.000 0.000 text.py:59(Truncator) 1 0.000 0.000 0.000 0.000 thread.py:4() 1 0.000 0.000 0.000 0.000 thread.py:44(_WorkItem) 1 0.000 0.000 0.000 0.000 thread.py:86(ThreadPoolExecutor) 1 0.000 0.000 0.015 0.015 threading.py:1() 1 0.000 0.000 0.000 0.000 threading.py:1158(Timer) 1 0.000 0.000 0.000 0.000 threading.py:1188(_MainThread) 1 0.000 0.000 0.000 0.000 threading.py:1190(__init__) 1 0.000 0.000 0.000 0.000 threading.py:1207(_DummyThread) 1 0.000 0.000 0.000 0.000 threading.py:203(Condition) 1 0.000 0.000 0.000 0.000 threading.py:215(__init__) 1 0.000 0.000 0.000 0.000 threading.py:239(__enter__) 1 0.000 0.000 0.000 0.000 threading.py:242(__exit__) 1 0.000 0.000 0.000 0.000 threading.py:254(_is_owned) 1 0.000 0.000 0.000 0.000 threading.py:334(notify) 1 0.000 0.000 0.000 0.000 threading.py:357(notify_all) 1 0.000 0.000 0.000 0.000 threading.py:369(Semaphore) 1 0.000 0.000 0.000 0.000 threading.py:449(BoundedSemaphore) 1 0.000 0.000 0.000 0.000 threading.py:487(Event) 1 0.000 0.000 0.000 0.000 threading.py:498(__init__) 1 0.000 0.000 0.000 0.000 threading.py:512(set) 1 0.000 0.000 0.000 0.000 threading.py:566(Barrier) 1 0.000 0.000 0.000 0.000 threading.py:720(BrokenBarrierError) 1 0.000 0.000 0.000 0.000 threading.py:738(Thread) 7 0.000 0.000 0.000 0.000 threading.py:74(RLock) 1 0.000 0.000 0.000 0.000 threading.py:757(__init__) 1 0.000 0.000 0.000 0.000 threading.py:87(_RLock) 1 0.000 0.000 0.000 0.000 threading.py:890(_set_ident) 1 0.000 0.000 0.000 0.000 threading.py:893(_set_tstate_lock) 1 0.000 0.000 0.002 0.002 timesince.py:1() 1 0.000 0.000 0.000 0.000 timezone.py:139(override) 1 0.000 0.000 0.000 0.000 timezone.py:29(FixedOffset) 1 0.000 0.000 0.042 0.042 timezone.py:3() 1 0.000 0.000 0.000 0.000 token.py:1() 1 0.000 0.000 0.000 0.000 token.py:74() 20 0.000 0.000 0.000 0.000 tokenize.py:112(group) 1 0.000 0.000 0.000 0.000 tokenize.py:113(any) 2 0.000 0.000 0.000 0.000 tokenize.py:114(maybe) 3 0.000 0.000 0.000 0.000 tokenize.py:137(_all_string_prefixes) 24 0.000 0.000 0.000 0.000 tokenize.py:148() 1 0.000 0.000 0.006 0.006 tokenize.py:21() 1 0.000 0.000 0.000 0.000 tokenize.py:217(TokenError) 1 0.000 0.000 0.000 0.000 tokenize.py:219(StopTokenizing) 1 0.000 0.000 0.000 0.000 tokenize.py:222(Untokenizer) 1 0.000 0.000 0.000 0.000 tokenize.py:99(TokenInfo) 1 0.000 0.000 0.012 0.012 traceback.py:1() 1 0.000 0.000 0.000 0.000 traceback.py:223(FrameSummary) 1 0.000 0.000 0.000 0.000 traceback.py:310(StackSummary) 1 0.000 0.000 0.000 0.000 traceback.py:426(TracebackException) 1 0.000 0.000 0.018 0.018 trans_real.py:1() 5 0.000 0.000 0.112 0.022 trans_real.py:136(_new_gnu_trans) 1 0.000 0.000 0.022 0.022 trans_real.py:151(_init_translation_catalog) 1 0.000 0.000 0.092 0.092 trans_real.py:158(_add_installed_apps_translations) 1 0.000 0.000 0.000 0.000 trans_real.py:173(_add_local_translations) 1 0.000 0.000 0.000 0.000 trans_real.py:179(_add_fallback) 5 0.000 0.000 0.000 0.000 trans_real.py:194(merge) 1 0.000 0.000 0.114 0.114 trans_real.py:215(translation) 6 0.000 0.000 0.114 0.019 trans_real.py:297(gettext) 1 0.000 0.000 0.000 0.000 trans_real.py:59(to_locale) 1 0.000 0.000 0.000 0.000 trans_real.py:76(to_language) 1 0.000 0.000 0.000 0.000 trans_real.py:85(DjangoTranslation) 1 0.000 0.000 0.114 0.114 trans_real.py:96(__init__) 1 0.000 0.000 0.000 0.000 transaction.py:1() 1 0.000 0.000 0.000 0.000 transaction.py:107(Atomic) 1 0.000 0.000 0.000 0.000 transaction.py:8(TransactionManagementError) 1 0.000 0.000 0.000 0.000 transports.py:1() 1 0.000 0.000 0.000 0.000 transports.py:10(BaseTransport) 1 0.000 0.000 0.000 0.000 transports.py:133(Transport) 1 0.000 0.000 0.000 0.000 transports.py:155(DatagramTransport) 1 0.000 0.000 0.000 0.000 transports.py:178(SubprocessTransport) 1 0.000 0.000 0.000 0.000 transports.py:230(_FlowControlMixin) 1 0.000 0.000 0.000 0.000 transports.py:45(ReadTransport) 1 0.000 0.000 0.000 0.000 transports.py:65(WriteTransport) 1 0.000 0.000 0.000 0.000 tree.py:19(__init__) 1 0.000 0.000 0.000 0.000 tree.py:4() 1 0.000 0.000 0.000 0.000 tree.py:9(Node) 242 0.000 0.000 0.000 0.000 types.py:135(__get__) 55 0.000 0.000 0.000 0.000 types.py:211(coroutine) 1 0.000 0.000 0.000 0.000 tzfile.py:13(_byte_string) 1 0.000 0.000 0.000 0.000 tzfile.py:4() 1 0.000 0.000 0.000 0.000 tzinfo.py:1() 1 0.000 0.000 0.000 0.000 tzinfo.py:156(DstTzInfo) 1 0.000 0.000 0.000 0.000 tzinfo.py:18(memorized_timedelta) 1 0.000 0.000 0.000 0.000 tzinfo.py:66(BaseTzInfo) 1 0.000 0.000 0.000 0.000 tzinfo.py:76(StaticTzInfo) 1 0.000 0.000 0.000 0.000 uploadedfile.py:100(SimpleUploadedFile) 1 0.000 0.000 0.000 0.000 uploadedfile.py:16(UploadedFile) 1 0.000 0.000 0.037 0.037 uploadedfile.py:3() 1 0.000 0.000 0.000 0.000 uploadedfile.py:56(TemporaryUploadedFile) 1 0.000 0.000 0.000 0.000 uploadedfile.py:79(InMemoryUploadedFile) 1 0.000 0.000 0.000 0.000 uploadhandler.py:131(TemporaryFileUploadHandler) 1 0.000 0.000 0.000 0.000 uploadhandler.py:151(MemoryFileUploadHandler) 1 0.000 0.000 0.000 0.000 uploadhandler.py:20(UploadFileException) 1 0.000 0.000 0.000 0.000 uploadhandler.py:27(StopUpload) 1 0.000 0.000 0.045 0.045 uploadhandler.py:3() 1 0.000 0.000 0.000 0.000 uploadhandler.py:46(SkipFile) 1 0.000 0.000 0.000 0.000 uploadhandler.py:53(StopFutureHandlers) 1 0.000 0.000 0.000 0.000 uploadhandler.py:61(FileUploadHandler) 1 0.000 0.000 0.000 0.000 urls.py:1() 2 0.000 0.000 0.000 0.000 util.py:1() 1 0.000 0.000 0.000 0.000 util.py:10() 1 0.000 0.000 0.000 0.000 util.py:11(FileWrapper) 1 0.000 0.000 0.000 0.000 util.py:147(Finalize) 1 0.000 0.000 0.000 0.000 util.py:330(ForkAwareThreadLock) 1 0.000 0.000 0.000 0.000 util.py:347(ForkAwareLocal) 1 0.000 0.000 0.001 0.001 util.py:55(find_library) 7 0.000 0.000 0.004 0.001 util.py:66(find_spec) 9 0.000 0.000 0.074 0.008 utils.py:1() 1 0.000 0.000 0.000 0.000 utils.py:1(FileProxyMixin) 32 0.000 0.000 0.000 0.000 utils.py:1(make_model_tuple) 1 0.000 0.000 0.045 0.045 utils.py:10() 1 0.000 0.000 0.000 0.000 utils.py:10(CachedDnsName) 1 0.000 0.000 0.231 0.231 utils.py:100(load_backend) 1 0.000 0.000 0.000 0.000 utils.py:12(InvalidTemplateEngineError) 1 0.000 0.000 0.000 0.000 utils.py:131(ConnectionDoesNotExist) 1 0.000 0.000 0.000 0.000 utils.py:135(ConnectionHandler) 1 0.000 0.000 0.000 0.000 utils.py:136(__init__) 1 0.000 0.000 0.000 0.000 utils.py:144(databases) 1 0.000 0.000 0.000 0.000 utils.py:15(Error) 1 0.000 0.000 0.000 0.000 utils.py:16(CursorWrapper) 1 0.000 0.000 0.000 0.000 utils.py:16(EngineHandler) 1 0.000 0.000 0.000 0.000 utils.py:161(ensure_defaults) 1 0.000 0.000 0.000 0.000 utils.py:17(__init__) 1 0.000 0.000 0.000 0.000 utils.py:182(prepare_test_settings) 1 0.000 0.000 0.000 0.000 utils.py:19(InterfaceError) 11 0.000 0.000 0.231 0.021 utils.py:195(__getitem__) 11 0.000 0.000 0.000 0.000 utils.py:196(split_identifier) 11 0.000 0.000 0.000 0.000 utils.py:210(truncate_name) 1 0.000 0.000 0.000 0.000 utils.py:213(__iter__) 1 0.000 0.000 0.000 0.000 utils.py:219(close_all) 1 0.000 0.000 0.000 0.000 utils.py:228(ConnectionRouter) 1 0.000 0.000 0.000 0.000 utils.py:229(__init__) 1 0.000 0.000 0.000 0.000 utils.py:23(DatabaseError) 2 0.000 0.000 0.000 0.000 utils.py:248(_router_func) 3 0.000 0.000 0.000 0.000 utils.py:249(strip_quotes) 1 0.000 0.000 0.000 0.000 utils.py:27(DataError) 1 0.000 0.000 0.000 0.000 utils.py:3() 1 0.000 0.000 0.000 0.000 utils.py:306(LRUCache) 1 0.000 0.000 0.000 0.000 utils.py:31(OperationalError) 2 0.000 0.000 0.000 0.000 utils.py:313(__init__) 2 0.000 0.000 0.000 0.000 utils.py:319(_postinit) 1 0.000 0.000 0.000 0.000 utils.py:35(IntegrityError) 1 0.000 0.000 0.000 0.000 utils.py:39(InternalError) 1 0.000 0.000 0.000 0.000 utils.py:43(ProgrammingError) 1 0.000 0.000 0.000 0.000 utils.py:44(ErrorDict) 1 0.000 0.000 0.000 0.000 utils.py:47(NotSupportedError) 1 0.000 0.000 0.030 0.030 utils.py:5() 1 0.000 0.000 0.000 0.000 utils.py:51(DatabaseErrorWrapper) 1 0.000 0.000 0.000 0.000 utils.py:573(Cycler) 1 0.000 0.000 0.000 0.000 utils.py:60(evalcontextfunction) 1 0.000 0.000 0.000 0.000 utils.py:601(Joiner) 1 0.000 0.000 0.000 0.000 utils.py:615(Namespace) 1 0.000 0.000 0.000 0.000 utils.py:79(ErrorList) 23 0.000 0.000 0.000 0.000 utils.py:83(internalcode) 1 0.000 0.000 0.000 0.000 utils.py:93(CursorDebugWrapper) 1 0.000 0.000 0.000 0.000 uu.py:31() 1 0.000 0.000 0.000 0.000 uu.py:39(Error) 4 0.000 0.000 0.000 0.000 uuid.py:106(__init__) 1 0.000 0.000 0.039 0.039 uuid.py:45() 1 0.000 0.000 0.000 0.000 uuid.py:58(UUID) 1 0.000 0.000 0.000 0.000 validation.py:1() 1 0.000 0.000 0.000 0.000 validation.py:1(BaseDatabaseValidation) 1 0.000 0.000 0.000 0.000 validation.py:3(__init__) 2 0.000 0.000 0.012 0.006 validators.py:1() 2 0.000 0.000 0.000 0.000 validators.py:105(__init__) 15 0.000 0.000 0.000 0.000 validators.py:16(_lazy_re_compile) 1 0.000 0.000 0.000 0.000 validators.py:163(EmailValidator) 1 0.000 0.000 0.000 0.000 validators.py:18(UnicodeUsernameValidator) 1 0.000 0.000 0.000 0.000 validators.py:181(__init__) 1 0.000 0.000 0.000 0.000 validators.py:28(RegexValidator) 1 0.000 0.000 0.000 0.000 validators.py:295(int_list_validator) 1 0.000 0.000 0.000 0.000 validators.py:308(BaseValidator) 11 0.000 0.000 0.000 0.000 validators.py:313(__init__) 1 0.000 0.000 0.000 0.000 validators.py:339(MaxValueValidator) 1 0.000 0.000 0.000 0.000 validators.py:348(MinValueValidator) 1 0.000 0.000 0.000 0.000 validators.py:357(MinLengthValidator) 7 0.000 0.000 0.000 0.000 validators.py:36(__init__) 1 0.000 0.000 0.000 0.000 validators.py:372(MaxLengthValidator) 1 0.000 0.000 0.001 0.001 validators.py:387(DecimalValidator) 1 0.000 0.000 0.000 0.000 validators.py:462(FileExtensionValidator) 1 0.000 0.000 0.000 0.000 validators.py:470(__init__) 1 0.000 0.000 0.000 0.000 validators.py:472() 1 0.000 0.000 0.000 0.000 validators.py:500(get_available_image_extensions) 1 0.000 0.000 0.000 0.000 validators.py:515(ProhibitNullCharactersValidator) 1 0.000 0.000 0.000 0.000 validators.py:73(URLValidator) 1 0.000 0.000 0.000 0.000 validators.py:8(ASCIIUsernameValidator) 1 0.000 0.000 0.095 0.095 version.py:1() 1 0.000 0.000 0.000 0.000 version.py:267(LooseVersion) 1 0.000 0.000 0.001 0.001 version.py:27() 1 0.000 0.000 0.000 0.000 version.py:31(Version) 2 0.000 0.000 0.000 0.000 version.py:32(get_main_version) 8 0.000 0.000 0.000 0.000 version.py:36() 4 0.000 0.000 0.000 0.000 version.py:39(get_complete_version) 2 0.000 0.000 0.000 0.000 version.py:8(get_version) 1 0.000 0.000 0.001 0.001 version.py:93(StrictVersion) 1 0.000 0.000 0.008 0.008 views.py:5() 1 0.000 0.000 0.000 0.000 visitor.py:10() 1 0.000 0.000 0.000 0.000 visitor.py:14(NodeVisitor) 1 0.000 0.000 0.000 0.000 visitor.py:47(NodeTransformer) 2 0.000 0.000 0.000 0.000 weakref.py:102(__init__) 3 0.000 0.000 0.000 0.000 weakref.py:153(__contains__) 3 0.000 0.000 0.000 0.000 weakref.py:165(__setitem__) 1 0.000 0.000 0.000 0.000 weakref.py:251(popitem) 2 0.000 0.000 0.000 0.000 weakref.py:288(update) 3 0.000 0.000 0.000 0.000 weakref.py:334(__new__) 3 0.000 0.000 0.000 0.000 weakref.py:339(__init__) 9 0.000 0.000 0.000 0.000 weakref.py:354(__init__) 8 0.000 0.000 0.000 0.000 weakref.py:393(__getitem__) 2 0.000 0.000 0.000 0.000 weakref.py:406(__setitem__) 10 0.000 0.000 0.000 0.000 weakref.py:526(__init__) 1 0.000 0.000 0.000 0.000 where.py:14(WhereNode) 1 0.000 0.000 0.000 0.000 where.py:191(NothingNode) 1 0.000 0.000 0.000 0.000 where.py:199(ExtraWhere) 1 0.000 0.000 0.000 0.000 where.py:212(SubqueryConstraint) 1 0.000 0.000 0.000 0.000 where.py:3() 29 0.000 0.000 0.000 0.000 widgets.py:143(media_property) 1 0.000 0.000 0.000 0.000 widgets.py:171(MediaDefiningClass) 30 0.000 0.000 0.001 0.000 widgets.py:175(__new__) 1 0.000 0.000 0.000 0.000 widgets.py:184(Widget) 1 0.000 0.000 0.000 0.000 widgets.py:275(Input) 1 0.000 0.000 0.000 0.000 widgets.py:294(TextInput) 1 0.000 0.000 0.000 0.000 widgets.py:299(NumberInput) 1 0.000 0.000 0.775 0.775 widgets.py:3() 1 0.000 0.000 0.000 0.000 widgets.py:304(EmailInput) 1 0.000 0.000 0.000 0.000 widgets.py:309(URLInput) 1 0.000 0.000 0.000 0.000 widgets.py:314(PasswordInput) 1 0.000 0.000 0.000 0.000 widgets.py:328(HiddenInput) 1 0.000 0.000 0.000 0.000 widgets.py:333(MultipleHiddenInput) 1 0.000 0.000 0.000 0.000 widgets.py:36(MediaOrderConflictWarning) 1 0.000 0.000 0.000 0.000 widgets.py:370(FileInput) 1 0.000 0.000 0.000 0.000 widgets.py:390(ClearableFileInput) 1 0.000 0.000 0.000 0.000 widgets.py:40(Media) 1 0.000 0.000 0.000 0.000 widgets.py:460(Textarea) 1 0.000 0.000 0.000 0.000 widgets.py:471(DateTimeBaseInput) 1 0.000 0.000 0.000 0.000 widgets.py:483(DateInput) 1 0.000 0.000 0.000 0.000 widgets.py:488(DateTimeInput) 1 0.000 0.000 0.000 0.000 widgets.py:493(TimeInput) 1 0.000 0.000 0.000 0.000 widgets.py:503(CheckboxInput) 1 0.000 0.000 0.000 0.000 widgets.py:544(ChoiceWidget) 1 0.000 0.000 0.000 0.000 widgets.py:668(Select) 1 0.000 0.000 0.000 0.000 widgets.py:702(NullBooleanSelect) 1 0.000 0.000 0.000 0.000 widgets.py:732(SelectMultiple) 1 0.000 0.000 0.000 0.000 widgets.py:748(RadioSelect) 1 0.000 0.000 0.000 0.000 widgets.py:754(CheckboxSelectMultiple) 1 0.000 0.000 0.000 0.000 widgets.py:780(MultiWidget) 1 0.000 0.000 0.000 0.000 widgets.py:874(SplitDateTimeWidget) 1 0.000 0.000 0.000 0.000 widgets.py:901(SplitHiddenDateTimeWidget) 1 0.000 0.000 0.000 0.000 widgets.py:913(SelectDateWidget) 1 0.000 0.000 0.000 0.000 window.py:1() 1 0.000 0.000 0.000 0.000 window.py:100(PercentRank) 1 0.000 0.000 0.000 0.000 window.py:107(Rank) 1 0.000 0.000 0.000 0.000 window.py:114(RowNumber) 1 0.000 0.000 0.000 0.000 window.py:16(DenseRank) 1 0.000 0.000 0.000 0.000 window.py:23(FirstValue) 1 0.000 0.000 0.000 0.000 window.py:30(LagLeadFunction) 1 0.000 0.000 0.000 0.000 window.py:54(Lag) 1 0.000 0.000 0.000 0.000 window.py:59(LastValue) 1 0.000 0.000 0.000 0.000 window.py:66(Lead) 1 0.000 0.000 0.000 0.000 window.py:71(NthValue) 1 0.000 0.000 0.000 0.000 window.py:88(Ntile) 1 0.000 0.000 0.000 0.000 window.py:9(CumeDist) 1 0.000 0.000 0.027 0.027 windows_events.py:1() 1 0.000 0.000 0.000 0.000 windows_events.py:161(_WaitCancelFuture) 1 0.000 0.000 0.000 0.000 windows_events.py:185(_WaitHandleFuture) 1 0.000 0.000 0.000 0.000 windows_events.py:237(PipeServer) 1 0.000 0.000 0.000 0.000 windows_events.py:296(_WindowsSelectorEventLoop) 1 0.000 0.000 0.000 0.000 windows_events.py:303(ProactorEventLoop) 1 0.000 0.000 0.000 0.000 windows_events.py:39(_OverlappedFuture) 1 0.000 0.000 0.000 0.000 windows_events.py:396(IocpProactor) 1 0.000 0.000 0.000 0.000 windows_events.py:757(_WindowsSubprocessTransport) 1 0.000 0.000 0.000 0.000 windows_events.py:775(_WindowsDefaultEventLoopPolicy) 1 0.000 0.000 0.000 0.000 windows_events.py:87(_BaseWaitHandleFuture) 1 0.000 0.000 0.000 0.000 windows_utils.py:131(PipeHandle) 1 0.000 0.000 0.000 0.000 windows_utils.py:176(Popen) 1 0.000 0.000 0.000 0.000 windows_utils.py:3() 1 0.000 0.000 0.000 0.000 wintypes.py:104(_SMALL_RECT) 1 0.000 0.000 0.000 0.000 wintypes.py:111(_COORD) 1 0.000 0.000 0.000 0.000 wintypes.py:115(POINT) 1 0.000 0.000 0.000 0.000 wintypes.py:120(SIZE) 1 0.000 0.000 0.000 0.000 wintypes.py:128(FILETIME) 1 0.000 0.000 0.000 0.000 wintypes.py:133(MSG) 1 0.000 0.000 0.000 0.000 wintypes.py:143(WIN32_FIND_DATAA) 1 0.000 0.000 0.000 0.000 wintypes.py:155(WIN32_FIND_DATAW) 1 0.000 0.000 0.001 0.001 wintypes.py:2() 1 0.000 0.000 0.000 0.000 wintypes.py:20(VARIANT_BOOL) 1 0.000 0.000 0.000 0.000 wintypes.py:97(RECT) 2 0.000 0.000 0.013 0.007 wsgi.py:1() 1 0.000 0.000 0.000 0.000 wsgi.py:135(WSGIHandler) 1 0.000 0.000 0.000 0.000 wsgi.py:17(LimitedStream) 1 0.000 0.000 0.000 0.000 wsgi.py:66(WSGIRequest) 466 0.003 0.000 0.003 0.000 {built-in method __new__ of type object at 0x000000006A61C3F0} 56 0.000 0.000 0.000 0.000 {built-in method _bisect.bisect} 1 0.000 0.000 0.000 0.000 {built-in method _codecs.lookup} 1 0.000 0.000 0.000 0.000 {built-in method _collections._count_elements} 3 0.000 0.000 0.000 0.000 {built-in method _ctypes.LoadLibrary} 36 0.000 0.000 0.000 0.000 {built-in method _ctypes.POINTER} 44 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} 433 0.001 0.000 0.001 0.000 {built-in method _imp._fix_co_filename} 2545 0.001 0.000 0.001 0.000 {built-in method _imp.acquire_lock} 16 0.001 0.000 0.001 0.000 {built-in method _imp.create_builtin} 13 0.072 0.006 0.087 0.007 {built-in method _imp.create_dynamic} 16 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} 13 0.000 0.000 0.000 0.000 {built-in method _imp.exec_dynamic} 107 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} 462 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} 2545 0.001 0.000 0.001 0.000 {built-in method _imp.release_lock} 1 0.000 0.000 0.000 0.000 {built-in method _json.encode_basestring_ascii} 1 0.000 0.000 0.000 0.000 {built-in method _locale._getdefaultlocale} 2 0.000 0.000 0.000 0.000 {built-in method _pickle.dumps} 3 0.000 0.000 0.000 0.000 {built-in method _sqlite3.register_adapter} 9 0.000 0.000 0.000 0.000 {built-in method _sqlite3.register_converter} 139 0.000 0.000 0.000 0.000 {built-in method _sre.compile} 329 0.000 0.000 0.000 0.000 {built-in method _sre.getlower} 4 0.000 0.000 0.000 0.000 {built-in method _ssl.txt2obj} 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} 226 0.000 0.000 0.000 0.000 {built-in method _struct.unpack} 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} 1023 0.002 0.000 0.002 0.000 {built-in method _thread.allocate_lock} 1272 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident} 2 0.000 0.000 0.000 0.000 {built-in method _winapi.CloseHandle} 1 0.002 0.002 0.002 0.002 {built-in method _winapi.CreateProcess} 1 0.000 0.000 0.000 0.000 {built-in method _winapi.GetExitCodeProcess} 1 0.000 0.000 0.000 0.000 {built-in method _winapi.TerminateProcess} 1 569.244 569.244 569.244 569.244 {built-in method _winapi.WaitForSingleObject} 5 0.000 0.000 0.000 0.000 {built-in method atexit.register} 1657/1605 0.034 0.000 0.629 0.000 {built-in method builtins.__build_class__} 99/43 0.000 0.000 3.099 0.072 {built-in method builtins.__import__} 72 0.000 0.000 0.000 0.000 {built-in method builtins.abs} 487 0.001 0.000 0.001 0.000 {built-in method builtins.any} 193 0.000 0.000 0.000 0.000 {built-in method builtins.callable} 500 0.000 0.000 0.000 0.000 {built-in method builtins.chr} 1 0.000 0.000 0.000 0.000 {built-in method builtins.compile} 9 0.000 0.000 0.000 0.000 {built-in method builtins.delattr} 6 0.000 0.000 0.000 0.000 {built-in method builtins.dir} 45 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} 466/1 0.016 0.000 574.281 574.281 {built-in method builtins.exec} 6649/6648 0.005 0.000 0.005 0.000 {built-in method builtins.getattr} 26 0.000 0.000 0.000 0.000 {built-in method builtins.globals} 27027 0.010 0.000 0.010 0.000 {built-in method builtins.hasattr} 105 0.000 0.000 0.000 0.000 {built-in method builtins.id} 12582 0.004 0.000 0.004 0.000 {built-in method builtins.isinstance} 449/394 0.000 0.000 0.001 0.000 {built-in method builtins.issubclass} 4 0.000 0.000 0.000 0.000 {built-in method builtins.iter} 13210/12684 0.003 0.000 0.003 0.000 {built-in method builtins.len} 17 0.000 0.000 0.000 0.000 {built-in method builtins.locals} 239 0.000 0.000 0.000 0.000 {built-in method builtins.max} 2451 0.001 0.000 0.001 0.000 {built-in method builtins.min} 17 0.000 0.000 0.000 0.000 {built-in method builtins.next} 1835 0.000 0.000 0.000 0.000 {built-in method builtins.ord} 28 0.000 0.000 0.000 0.000 {built-in method builtins.repr} 9 0.000 0.000 0.000 0.000 {built-in method builtins.round} 3197 0.002 0.000 0.002 0.000 {built-in method builtins.setattr} 27 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} 19 0.000 0.000 0.000 0.000 {built-in method builtins.vars} 886 0.001 0.000 0.001 0.000 {built-in method from_bytes} 308 0.000 0.000 0.000 0.000 {built-in method fromhex} 6 0.000 0.000 0.000 0.000 {built-in method io.open} 2 0.000 0.000 0.000 0.000 {built-in method maketrans} 433 0.067 0.000 0.067 0.000 {built-in method marshal.loads} 1 0.000 0.000 0.000 0.000 {built-in method math.exp} 2 0.000 0.000 0.000 0.000 {built-in method math.log} 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} 9 0.000 0.000 0.000 0.000 {built-in method nt._getfullpathname} 10 0.002 0.000 0.002 0.000 {built-in method nt._isdir} 1810 0.001 0.000 0.001 0.000 {built-in method nt.fspath} 181 0.000 0.000 0.000 0.000 {built-in method nt.getcwd} 129 0.961 0.007 0.961 0.007 {built-in method nt.listdir} 1 0.000 0.000 0.000 0.000 {built-in method nt.putenv} 1877 0.884 0.000 0.884 0.000 {built-in method nt.stat} 1 0.000 0.000 0.000 0.000 {built-in method nt.urandom} 27 0.000 0.000 0.000 0.000 {built-in method sys._getframe} 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} 6 0.000 0.000 0.000 0.000 {built-in method sys.getrecursionlimit} 1 0.000 0.000 0.000 0.000 {built-in method sys.getwindowsversion} 55 0.000 0.000 0.000 0.000 {built-in method sys.intern} 1 0.000 0.000 0.000 0.000 {built-in method time.time} 1 0.000 0.000 0.000 0.000 {built-in method utcfromtimestamp} 1594 0.118 0.000 0.118 0.000 {built-in method winreg.EnumKey} 1594 0.038 0.000 0.038 0.000 {built-in method winreg.OpenKey} 327 0.006 0.000 0.006 0.000 {built-in method winreg.QueryValueEx} 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x000002C1AC42DA60} 147 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} 35 0.000 0.000 0.000 0.000 {method '__contains__' of 'set' objects} 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} 15 0.000 0.000 0.000 0.000 {method '__reduce_ex__' of 'object' objects} 554 0.000 0.000 0.000 0.000 {method '__subclasses__' of 'type' objects} 8 0.000 0.000 0.000 0.000 {method '__subclasshook__' of 'object' objects} 25 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.RLock' objects} 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} 2026 0.001 0.000 0.001 0.000 {method 'add' of 'set' objects} 14463 0.003 0.000 0.003 0.000 {method 'append' of 'list' objects} 96 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} 511 0.000 0.000 0.000 0.000 {method 'cache_clear' of 'functools._lru_cache_wrapper' objects} 6 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} 15 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} 4 0.000 0.000 0.000 0.000 {method 'copy' of 'collections.OrderedDict' objects} 38 0.000 0.000 0.000 0.000 {method 'copy' of 'dict' objects} 13 0.000 0.000 0.000 0.000 {method 'copy' of 'mappingproxy' objects} 4 0.000 0.000 0.000 0.000 {method 'count' of 'list' objects} 67 0.000 0.000 0.000 0.000 {method 'decode' of 'bytes' objects} 2 0.000 0.000 0.000 0.000 {method 'deleter' of 'property' objects} 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} 431 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} 740 0.001 0.000 0.001 0.000 {method 'endswith' of 'str' objects} 653 0.001 0.000 0.001 0.000 {method 'extend' of 'list' objects} 1116 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} 31 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'finditer' of '_sre.SRE_Pattern' objects} 1433 0.001 0.000 0.001 0.000 {method 'format' of 'str' objects} 2483 0.001 0.000 0.001 0.000 {method 'get' of 'dict' objects} 276 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} 26 0.000 0.000 0.000 0.000 {method 'group' of '_sre.SRE_Match' objects} 4 0.000 0.000 0.000 0.000 {method 'groups' of '_sre.SRE_Match' objects} 1 0.000 0.000 0.000 0.000 {method 'index' of 'list' objects} 1 0.000 0.000 0.000 0.000 {method 'index' of 'str' objects} 57 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} 4 0.000 0.000 0.000 0.000 {method 'isatty' of '_io.TextIOWrapper' objects} 1 0.000 0.000 0.000 0.000 {method 'isdigit' of 'str' objects} 249 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} 136 0.000 0.000 0.000 0.000 {method 'issuperset' of 'frozenset' objects} 910 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} 168 0.000 0.000 0.000 0.000 {method 'items' of 'collections.OrderedDict' objects} 217 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} 15 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} 4846/4811 0.002 0.000 0.003 0.000 {method 'join' of 'str' objects} 16 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} 2604 0.001 0.000 0.001 0.000 {method 'lower' of 'str' objects} 17 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} 142 0.000 0.000 0.000 0.000 {method 'match' of '_sre.SRE_Pattern' objects} 284 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} 1375 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'pop' of 'collections.OrderedDict' objects} 146 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} 7 0.000 0.000 0.000 0.000 {method 'pop' of 'list' objects} 1 0.000 0.000 0.000 0.000 {method 'popitem' of 'dict' objects} 6 0.002 0.000 0.002 0.000 {method 'read' of '_io.BufferedReader' objects} 433 0.133 0.000 0.133 0.000 {method 'read' of '_io.FileIO' objects} 25 0.000 0.000 0.000 0.000 {method 'release' of '_thread.RLock' objects} 3 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} 53 0.000 0.000 0.000 0.000 {method 'remove' of 'set' objects} 409 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} 11 0.000 0.000 0.000 0.000 {method 'reverse' of 'list' objects} 18 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} 3016 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} 880 0.002 0.000 0.002 0.000 {method 'rsplit' of 'str' objects} 8397 0.003 0.000 0.003 0.000 {method 'rstrip' of 'str' objects} 1 0.000 0.000 0.000 0.000 {method 'send' of 'generator' objects} 415 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} 33 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} 107 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} 6 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} 245 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} 3649 0.001 0.000 0.001 0.000 {method 'startswith' of 'str' objects} 228 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} 13 0.000 0.000 0.000 0.000 {method 'sub' of '_sre.SRE_Pattern' objects} 1 0.000 0.000 0.000 0.000 {method 'title' of 'str' objects} 6 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} 1 0.000 0.000 0.000 0.000 {method 'toordinal' of 'datetime.date' objects} 59 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} 8 0.000 0.000 0.000 0.000 {method 'update' of 'collections.OrderedDict' objects} 542 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} 41 0.000 0.000 0.000 0.000 {method 'update' of 'set' objects} 154 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} 18 0.000 0.000 0.000 0.000 {method 'values' of 'collections.OrderedDict' objects} 1 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} 8 0.000 0.000 0.000 0.000 {method 'values' of 'mappingproxy' objects} ```
YAJeff commented 5 years ago

Works fine in a Linux container. I've tried multiple Python/Windows versions according to the docker python page, with no luck.

It seems the call that is taking a long time is the _winapi.WaitForSingleObject method. Not sure where this is being called from, or why it's taking so long. But this is an issue that doesn't exist when running python locally.

tianon commented 5 years ago

But this is an issue that doesn't exist when running python locally.

By this, do you mean not in a container but still on Windows? Is it the same exact version of Python? Is it installed from the same artifacts our image is downloading and installing?

I think this one is in the realm of something that's either an issue with upstream Python (and/or the way they've packaged for Windows), an issue with Docker itself, an issue with Windows itself (and/or the containerization functionality therein -- on Windows 10, that involves Hyper-V so some performance issues are likely "normal"), or some combination of the above.

What I don't see is a way for us to "fix" this from the image, since it's really likely to be an environmental issue (not one of, for example, the configuration of Python in the image, since we don't do anything special there except run the Python installer).

tianon commented 5 years ago

Closing since this doesn't appear to be something we can fix in the image. For further help, I'd recommend trying the Docker Community Forums, the Docker Community Slack, or Stack Overflow.