Changes between Initial Version and Version 2 of Ticket #20830


Ignore:
Timestamp:
Sep 22, 2013, 6:10:25 PM (11 years ago)
Author:
Daniele Procida
Comment:

Sphinx on my local installation also renders the links to http://pythonhosted.org/six/index.html#module-six.moves and http://pythonhosted.org/six/index.html#module-six incorrectly, failing to include the module- part.

There's still the second issue, which we can do something about, where our docs say:

Some modules were renamed in Python 3. The :mod:`django.utils.six.moves
<six.moves>` module provides a compatible location to import them.

In other words, we are referring to a Python module (<six.moves>), but the hyperlink text (django.utils.six.moves) appears to refer to something in Django, so that hyperlink text should be changed. We could say something like:

The Python :mod:`six.moves <six.moves>` module... 

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20830

    • Property Cc timograham@… Daniele Procida added
    • Property Triage Stage UnreviewedAccepted
    • Property Summary Bad URL in "Porting to Python 3 / Moved modules"Bad URL for six.moves in "Porting to Python 3 / Moved modules"
    • Property Keywords afraid-to-commit added
  • Ticket #20830 – Description

    initial v2  
    44
    55Also, it seems weird to have a hyperlink with value "django.utils.six.moves" pointing to the actual "six" documentation since Django includes a custom version of it, albeit very similar. Perhaps it will be clearer to have something like "six.moves <six.moves>".
     6
     7Marked as easy-pickings for the second issue. I'm not sure what's going on with the first.
Back to Top