Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-taggit
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
828cbd26
authored
Mar 23, 2013
by
Christopher Grebs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc for __lt__
parent
fb2d1cc4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
taggit/managers.py
+5
-0
No files found.
taggit/managers.py
View file @
828cbd26
...
@@ -67,6 +67,11 @@ class TaggableManager(RelatedField):
...
@@ -67,6 +67,11 @@ class TaggableManager(RelatedField):
self
.
post_through_setup
(
cls
)
self
.
post_through_setup
(
cls
)
def
__lt__
(
self
,
other
):
def
__lt__
(
self
,
other
):
"""
Required contribute_to_class as Django uses bisect
for ordered class contribution and bisect requires
a orderable type in py3.
"""
return
False
return
False
def
post_through_setup
(
self
,
cls
):
def
post_through_setup
(
self
,
cls
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment