Skip to content

Commit

Permalink
Merge pull request #602 from AspenWeb/clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
Changaco committed Jun 6, 2021
2 parents db45482 + 734af8d commit acf0fa2
Show file tree
Hide file tree
Showing 42 changed files with 467 additions and 1,366 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
include COPYRIGHT
include ez_setup.py
include version.txt
include pando/configuration/mime.types
graft pando/www
Expand Down
8 changes: 2 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# -*- coding: utf-8 -*-
#
# Pando documentation build configuration file, originally created by
# sphinx-quickstart on Mon Feb 24 15:00:43 2014.
#
Expand Down Expand Up @@ -61,8 +59,6 @@
'__subclasshook__', # inherited-members
}

text_type = unicode if sys.version_info[0] < 3 else str

def autodoc_skip_member(app, what, name, obj, skip, options):
return (
skip or
Expand All @@ -79,7 +75,7 @@ def autodoc_skip_member(app, what, name, obj, skip, options):
obj is getattr(dict, name, None) or
obj is getattr(int, name, None) or
obj is getattr(bytes, name, None) or
obj is getattr(text_type, name, None)
obj is getattr(str, name, None)
)
)

Expand Down Expand Up @@ -132,6 +128,6 @@ def setup(app):

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
'python': ('https://docs.python.org/3.5/', None),
'python': ('https://docs.python.org/3/', None),
'aspen': ('http://core.aspen.io/en/latest/', None),
}

0 comments on commit acf0fa2

Please sign in to comment.