Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
73e05497
Commit
73e05497
authored
Aug 26, 2019
by
Julien Palard
Committed by
Ned Deily
Aug 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc: Keep the venv/* exclude pattern. (GH-15229)
In case it has been previously created.
parent
da27d9b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
Doc/conf.py
Doc/conf.py
+4
-2
No files found.
Doc/conf.py
View file @
73e05497
...
...
@@ -48,8 +48,10 @@ highlight_language = 'python3'
needs_sphinx
=
'1.8'
# Ignore any .rst files in the venv/ directory.
venvdir
=
os
.
getenv
(
'VENVDIR'
,
'venv'
)
exclude_patterns
=
[
venvdir
+
'/*'
,
'README.rst'
]
exclude_patterns
=
[
'venv/*'
,
'README.rst'
]
venvdir
=
os
.
getenv
(
'VENVDIR'
)
if
venvdir
is
not
None
:
exclude_patterns
.
append
(
venvdir
+
'/*'
)
# Disable Docutils smartquotes for several translations
smartquotes_excludes
=
{
...
...
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