Opened 9 years ago

Closed 2 years ago

Last modified 4 months ago

#24121 closed New feature (fixed)

Provide a better repr() experience

Reported by: Keryn Knight Owned by: Nicolás Restrepo
Component: Core (Other) Version: dev
Severity: Normal Keywords:
Cc: django@… Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description (last modified by Mariusz Felisiak)

For a long time, Django has shipped with the debug 500 handler, which defaults to a view where "local vars" for every stack frame can be expanded and inspected to see the internal state at the various points in the stack trace.

Between that renderer, the heavy usage of django-debug-toolbar, which ships with a template context inspector, and my preference throwing pdb everywhere, there is a notable lack of a good repr() experience in much of Django, both in debugging public API (that is, the bits a user will use and encounter), and internals that might be exposed, or could otherwise be served better by having a repr that says something more than it's address/id.

A couple of previous tickets have addressed this in minor, one off ways - #23167, #22906, #22531 - but as I've begun collecting places they could supply useful info as I spot them in my stuff, they've become a hodgepodge across a number of modules.

For example, a couple I've got implemented:

<TemplateResponse status_code=200, charset=utf-8, _is_rendered=False>

<LoaderOrigin name=/absolute/path/to/templates/admin/change_list.html, loadname=admin/change_list.html>

<FilterExpression var=u'admin/change_list.html', filters=[]>

All of which, IMHO, provide a more useful context in which to evaluate state.

The branch I have implemented my reprs in is in no way merge ready yet, partially because there's no tests, and it'd need rebasing & squashing, but also because there are some parts I'd like to see reprs on but haven't landed on a good way to do so.
An example being the concept of a Loader, which currently has no repr() and thus shows up as <path.to.cached.Loader … 0xETC> which at least tells us which loader is being referenced. Given the convention so far for reprs() is just the class name (rather than module + class), the fact all Loaders (and now Engines) all share the same class name means in exposing more useful internal state we lose knowledge of the loader in question's module namespace.

As I write this, I've got at least rudimentary (as in, it was possibly to replace the 0x... with at least one object-state variable) reprs for:

If accepted, this ticket could just track whatever I can end up getting reviewed/merged, or it could be a meta-ticket for accepting as a principle, and I could spin off tickets for more targeted areas.

Change History (56)

comment:1 Changed 9 years ago by Josh Smeaton

Triage Stage: UnreviewedAccepted

comment:2 Changed 9 years ago by Berker Peksag

<TemplateResponse status_code=200, charset=utf-8, _is_rendered=False>

<LoaderOrigin name=/absolute/path/to/templates/admin/change_list.html, loadname=admin/change_list.html>

<FilterExpression var=u'admin/change_list.html', filters=[]>

charset, name and loadname should also be a string.

<TemplateResponse status_code=200, charset='utf-8', _is_rendered=False>

<LoaderOrigin name='/absolute/path/to/templates/admin/change_list.html', loadname='admin/change_list.html'>

Here's an example from Python:

>>> open('README')
<_io.TextIOWrapper name='README' mode='r' encoding='UTF-8'>

comment:3 Changed 8 years ago by Tim Graham <timograham@…>

In c96f112:

Refs #24121 -- Added meaningful repr() to HttpResponse and subclasses.

comment:4 Changed 8 years ago by Tim Graham <timograham@…>

In 9c40f01a:

Refs #24121 -- Added repr() to LazySettings, Settings, and UserSettingsHolder.

comment:5 Changed 8 years ago by Tim Graham <timograham@…>

In d4b10a72:

Refs #24121 -- Added a repr() to gis.GeoIP and gis.GeoIP2.

comment:6 Changed 7 years ago by Tim Graham

Component: UncategorizedCore (Other)

comment:7 Changed 3 years ago by David Smith

Easy pickings: set

Marking as easy pickings as I think this can be achieved in stages -- I'm not expecting someone to propose a PR that addresses all of these in one go!

comment:8 Changed 3 years ago by Rohith P R

In https://github.com/django/django/pull/14045: Refs #24121 -- Added repr to django.template.defaulttags.URLNode

Last edited 3 years ago by Rohith P R (previous) (diff)

comment:9 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:10 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In 179ee13:

Refs #24121 -- Added repr() to FilterExpression, Lexer, Parser, and Token.

comment:11 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:12 Changed 3 years ago by Rohith P R

Has patch: set

comment:13 Changed 3 years ago by Mariusz Felisiak

Patch needs improvement: set

comment:14 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In d3ecef26:

Refs #24121 -- Added repr() to URLNode.

comment:15 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)
Has patch: unset
Patch needs improvement: unset

comment:16 Changed 3 years ago by Nick Pope

Has patch: set

comment:17 Changed 3 years ago by GitHub <noreply@…>

In afb0eb8:

Refs #24121 -- Added repr() to OrderedSet.

comment:18 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)
Has patch: unset

comment:19 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In dc86a25a:

Refs #24121 -- Added repr() to MiddlewareMixin and subclasses.

comment:20 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:21 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:22 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:23 Changed 3 years ago by Jonny Park

Query Does not have __repr__ as well. Doesn't it need one?

Ah I just found it has __str__

Last edited 3 years ago by Jonny Park (previous) (diff)

comment:24 Changed 3 years ago by tiagohonorato

comment:25 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:26 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In 4f4f770:

Refs #24121 -- Added repr() to Origin and Template.

comment:27 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:28 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In e6406853:

Refs #24121 -- Addedrepr() to StaticNode.

comment:29 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:30 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:31 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:32 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In f0a9413b:

Refs #24121 -- Improved Value.repr().

comment:33 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In d3d95d6:

Refs #24121 -- Added repr() to Lookup.

comment:34 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:35 Changed 3 years ago by Abhyudai

Description: modified (diff)

comment:36 Changed 3 years ago by Abhyudai

Description: modified (diff)

comment:37 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In 22da686c:

Refs #24121 -- Added repr() to PermWrapper.

comment:38 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:39 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In c609d514:

Refs #24121 -- Added repr() to Engine

comment:40 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:41 Changed 3 years ago by Mariusz Felisiak

Description: modified (diff)

comment:42 Changed 3 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In 7dd502b:

Refs #24121 -- Added repr() to ChangeList and BaseStorage.

comment:43 Changed 2 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In 66ed03e:

Refs #24121 -- Added repr() to AdminForm, BlockContext, BlockTranslateNode, and IncludeNode.

comment:44 Changed 2 years ago by Mariusz Felisiak

Description: modified (diff)

comment:45 Changed 2 years ago by Nicolás Restrepo

Owner: changed from nobody to Nicolás Restrepo
Status: newassigned

comment:46 Changed 2 years ago by Nicolás Restrepo

add StreamingHttpResponse repr() method => https://github.com/django/django/pull/14531

comment:47 Changed 2 years ago by Nicolás Restrepo

Description: modified (diff)

comment:48 Changed 2 years ago by Nicolás Restrepo

Description: modified (diff)

comment:49 Changed 2 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In bbb39658:

Refs #24121 -- Added repr() to StreamingHttpResponse and subclasses.

comment:50 Changed 2 years ago by Mariusz Felisiak

Description: modified (diff)

comment:51 Changed 2 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In e4da3654:

Refs #24121 -- Added repr() to AdminSite, DefaultAdminSite, and ModelAdmin.

Thanks tlebrize for the initial patch.

comment:52 Changed 2 years ago by Mariusz Felisiak

Description: modified (diff)

comment:53 Changed 2 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In 6fa29305:

Refs #24121 -- Added repr() to BaseDatabaseWrapper, JoinPromoter, and SQLCompiler.

comment:54 Changed 2 years ago by Mariusz Felisiak

Description: modified (diff)
Resolution: fixed
Status: assignedclosed

comment:55 Changed 2 years ago by Mariusz Felisiak <felisiak.mariusz@…>

In e95e642:

Refs #24121 -- Added repr() to BaseFormSet.

comment:56 Changed 4 months ago by Mariusz Felisiak <felisiak.mariusz@…>

In 7bba231b:

Refs #24121 -- Added repr() to Message.

Note: See TracTickets for help on using tickets.
Back to Top