This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit 554a7430a2947f67e2316a6775654c66070d75a2 | |
| Author: David Smith <smithdc@gmail.com> | |
| Date: Tue Oct 26 15:55:57 2021 +0100 | |
| Sample class attribute patch | |
| diff --git a/django/forms/boundfield.py b/django/forms/boundfield.py | |
| index 5bbfcbe41c..a971407d0c 100644 | |
| --- a/django/forms/boundfield.py | |
| +++ b/django/forms/boundfield.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyperf | |
| import django | |
| from django.conf import settings | |
| from django.forms import CharField, FloatField, Form, HiddenInput, IntegerField | |
| from django.template.base import Template | |
| from django.template.context import Context | |
| from django.utils.functional import SimpleLazyObject | |
| from crispy_forms.helper import FormHelper |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.conf.global_settings import INSTALLED_APPS | |
| import django | |
| from django.conf import settings | |
| from django.forms import DecimalField | |
| import pyperf | |
| settings.configure(INSTALLED_APPS= ('__main__',)) | |
| django.setup() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.conf.global_settings import INSTALLED_APPS | |
| import django | |
| from django.db import models | |
| from django.conf import settings | |
| import pyperf | |
| settings.configure(INSTALLED_APPS= ('__main__',)) | |
| django.setup() | |
| # models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import django | |
| from django import forms | |
| from django.conf import settings | |
| from django.forms import Media | |
| settings.configure() | |
| django.setup() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyperf | |
| import django | |
| from django.conf import settings | |
| from django.urls import re_path, resolve | |
| settings.configure(ROOT_URLCONF=__name__) | |
| django.setup() | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyperf | |
| from django.utils.functional import cached_property as dj_cached_property | |
| from functools import cached_property as py_cached_property | |
| class TestClass: | |
| @dj_cached_property | |
| def dj_cached(self): | |
| return "Test" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pyperf | |
| small_data = {"a": 1, "b": 2, "c": 3} | |
| large_data = {} | |
| for k, v in enumerate(range(100_000)): | |
| large_data[k] = v | |
| def list_comprehension(loops, data): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repos: | |
| - repo: https://github.com/timothycrosley/isort | |
| rev: 5.6.4 | |
| hooks: | |
| - id: isort | |
| - repo: https://gitlab.com/pycqa/flake8 | |
| rev: 3.8.4 | |
| hooks: | |
| - id: flake8 | |
| - repo: https://github.com/pre-commit/pre-commit-hooks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from django.utils.translation import ngettext_lazy | |
| from django.core.validators import validate_email | |
| from django.forms import Form, CharField, IntegerField, PasswordInput | |
| from django.conf import settings | |
| from django.forms.utils import ErrorList, ErrorDict, ValidationError | |
| import django | |
| settings.configure() | |
| django.setup() |