#8848 closed Uncategorized (fixed)
[Custom file storage] Contradiction between code and docs
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Normal | Keywords: | file storage comment |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
http://code.djangoproject.com/browser/django/trunk/django/core/files/storage.py#L83:
# The following methods form the public API for storage systems, but with # no default implementations. Subclasses must implement *all* of these.
Meanwhile, in http://docs.djangoproject.com/en/dev/howto/custom-file-storage/#howto-custom-file-storage:
Your custom storage system may override any of the storage methods explained in File storage API.
Change History (5)
comment:1 by , 16 years ago
Cc: | added |
---|
comment:2 by , 16 years ago
Summary: | [Custom file storage] Contradiction in code and docs → [Custom file storage] Contradiction between code and docs |
---|
comment:3 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 by , 14 years ago
Cc: | removed |
---|---|
Easy pickings: | unset |
Severity: | → Normal |
Type: | → Uncategorized |
Note:
See TracTickets
for help on using tickets.
(In [8942]) Fixed #8848: clarified custom file storage backend docs in light of the more clear code comments.