mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Improve memory address removal for serializer representations
This commit is contained in:
parent
de301f3b66
commit
54ccf7230d
|
@ -17,7 +17,7 @@ def smart_repr(value):
|
|||
# <django.core.validators.RegexValidator object at 0x1047af050>
|
||||
# Should be presented as
|
||||
# <django.core.validators.RegexValidator object>
|
||||
value = re.sub(' at 0x[0-9a-f]{8,10}>', '>', value)
|
||||
value = re.sub(' at 0x[0-9a-f]{8,32}>', '>', value)
|
||||
|
||||
return value
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user