🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 01:30:19 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
pylint_django
/
tests
/
input
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/pylint_django/tests/input
🔄 Refresh
✏️
Editing: func_noerror_protected_meta_access.py
Read Only
""" Tests to make sure that access to _meta on a model does not raise a protected-access warning, as it is part of the public API since Django 1.8 (see https://github.com/PyCQA/pylint-django/issues/66, and https://docs.djangoproject.com/en/1.9/ref/models/meta/) """ # pylint: disable=missing-docstring from __future__ import print_function from django.db import models class ModelWhichLikesMeta(models.Model): ursuary = models.BooleanField(default=False) def do_a_thing(self): return self._meta.get_field("ursuary") if __name__ == "__main__": MODEL = ModelWhichLikesMeta() MODEL.save() print(MODEL._meta.get_field("ursuary")) print(MODEL.do_a_thing())
💾 Save Changes
❌ Cancel