Skip to content

Commit b167e47

Browse files
committed
Merge branch 'release/4.4.0'
2 parents 19b100e + 0a3c1bd commit b167e47

31 files changed

+1365
-266
lines changed

docs/_theme/flask_theme_support.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# flasky extensions. flasky pygments style based on tango style
22
from pygments.style import Style
33
from pygments.token import (
4-
Keyword,
5-
Name,
64
Comment,
7-
String,
85
Error,
6+
Generic,
7+
Keyword,
8+
Literal,
9+
Name,
910
Number,
1011
Operator,
11-
Generic,
12-
Whitespace,
13-
Punctuation,
1412
Other,
15-
Literal,
13+
Punctuation,
14+
String,
15+
Whitespace,
1616
)
1717

1818

docs/conf.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
#
32
# Progress Bar documentation build configuration file, created by
43
# sphinx-quickstart on Tue Aug 20 11:47:33 2013.
@@ -11,16 +10,16 @@
1110
# All configuration values have a default; values that are commented out
1211
# serve to show the default.
1312

13+
import datetime
1414
import os
1515
import sys
16-
import datetime
1716

1817
# If extensions (or modules to document with autodoc) are in another directory,
1918
# add these directories to sys.path here. If the directory is relative to the
2019
# documentation root, use os.path.abspath to make it absolute, like shown here.
2120
sys.path.insert(0, os.path.abspath('..'))
2221

23-
from progressbar import __about__ as metadata # noqa: E402
22+
from progressbar import __about__ as metadata
2423

2524
# -- General configuration -----------------------------------------------
2625

@@ -59,7 +58,7 @@
5958
master_doc = 'index'
6059

6160
# General information about the project.
62-
project = u'Progress Bar'
61+
project = 'Progress Bar'
6362
project_slug = ''.join(project.capitalize().split())
6463
copyright = f'{datetime.date.today().year}, <a href="http://wol.ph/">{metadata.__author__}</a>'
6564

docs/progressbar.algorithms.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
progressbar.algorithms module
2+
=============================
3+
4+
.. automodule:: progressbar.algorithms
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/progressbar.env.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
progressbar.env module
2+
======================
3+
4+
.. automodule:: progressbar.env
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/progressbar.terminal.os_specific.posix.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/progressbar.terminal.os_specific.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ Submodules
77
.. toctree::
88
:maxdepth: 4
99

10-
progressbar.terminal.os_specific.posix
11-
progressbar.terminal.os_specific.windows
12-
1310
Module contents
1411
---------------
1512

docs/progressbar.terminal.os_specific.windows.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)