Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sphinx-doc/sphinx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.4.0
Choose a base ref
...
head repository: sphinx-doc/sphinx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.4.1
Choose a head ref
  • 16 commits
  • 11 files changed
  • 3 contributors

Commits on Dec 20, 2020

  1. Bump version

    tk0miya committed Dec 20, 2020
    Configuration menu
    Copy the full SHA
    323b136 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2020

  1. Fix #8559: AttributeError is raised when using ForwardRef

    The restify() helper crashes when ForwardRef is passed.
    tk0miya committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    423e7ab View commit details
    Browse the repository at this point in the history
  2. Merge pull request #8564 from tk0miya/8559_AttributeError_for_ForwardRef

    Fix #8559: AttributeError is raised when using ForwardRef
    tk0miya authored Dec 21, 2020
    Configuration menu
    Copy the full SHA
    97a0bab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4431f11 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2208094 View commit details
    Browse the repository at this point in the history
  5. Update CHANGES for PR #8569

    tk0miya committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    b3292b5 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #8570 from tk0miya/8569_getslots_TypeError

    Fixes #8568. Ignore TypeError from getslots in isslotsattribute
    tk0miya authored Dec 21, 2020
    Configuration menu
    Copy the full SHA
    31cad2e View commit details
    Browse the repository at this point in the history
  7. Fix #8567: autodoc: Instance attributes are incorrectly added to Pare…

    …nt class
    
    The instance attributes on subclasses are shown on the document of
    parent class unexpectedly because of autodoc modifies `__annotations__`
    in place.  This fix creates a copy of `__annotations__` attribute and
    attach it to the subclass.
    tk0miya committed Dec 21, 2020
    Configuration menu
    Copy the full SHA
    70bb226 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2020

  1. Merge pull request #8571 from tk0miya/8567_wrong_ivars_in_parent_class

    Fix #8567: autodoc: Instance attributes are incorrectly added to Parent class
    tk0miya authored Dec 22, 2020
    Configuration menu
    Copy the full SHA
    955d655 View commit details
    Browse the repository at this point in the history
  2. Ensure linkcheck items are comparable

    Linkcheck organizes the URLs to checks in a PriorityQueue. The items are
    tuples (priority, url, docname, lineno).
    
    Tuples where the lineno is `None` are not comparable with tuples that
    have an integer lineno, and PriorityQueue items must be comparable (see
    https://bugs.python.org/issue31145).
    
    Fixes an issue when a document contains two links to the same URL, one
    with an int line number and the other without line number metadata (such
    as an image :target: attribute).
    
    Using 0 instead of None to represent no line number should not lead to
    observable changes, the result logger only logs the line number when it
    is truthy.
    
    Close #8565
    francoisfreitag committed Dec 22, 2020
    Configuration menu
    Copy the full SHA
    a1b8b1f View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2020

  1. Merge pull request #8579 from francoisfreitag/fix-queue

    Ensure linkcheck items are comparable
    tk0miya authored Dec 23, 2020
    Configuration menu
    Copy the full SHA
    46eaa5d View commit details
    Browse the repository at this point in the history
  2. Fix #8566: autodoc-process-docstring is emitted to the alias classes

    On the refactoring of Documenter.add_content() method, the
    autodoc-process-docstring event is emitted to the alias classes (called
    as doc_as_attr in our code) unexpectedly.  Before the change, it has
    never been emitted.
    
    The event causes that extensions (ex. numpydoc) confused.  So this
    reverts the change temporarily (during 3.4.x).
    
    refs: #8533
    tk0miya committed Dec 23, 2020
    Configuration menu
    Copy the full SHA
    df8ab21 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2020

  1. Merge pull request #8581 from tk0miya/8566_autodoc_process_docstring_…

    …for_alias_classes
    
    Fix #8566: autodoc-process-docstring is emitted to the alias classes
    tk0miya authored Dec 24, 2020
    Configuration menu
    Copy the full SHA
    0432604 View commit details
    Browse the repository at this point in the history
  2. Fix #8583: autodoc: Unnecessary object comparision via __eq__ method

    It should be compared by `is` keyword instead.
    tk0miya committed Dec 24, 2020
    Configuration menu
    Copy the full SHA
    5c39d0c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #8585 from tk0miya/8583_unnecessary_eq

    Fix #8583: autodoc: Unnecessary object comparision via ``__eq__`` method
    tk0miya authored Dec 24, 2020
    Configuration menu
    Copy the full SHA
    b94752a View commit details
    Browse the repository at this point in the history
  4. Bump to 3.4.1 final

    tk0miya committed Dec 24, 2020
    Configuration menu
    Copy the full SHA
    f5406b9 View commit details
    Browse the repository at this point in the history
Loading