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
4709ac14
Commit
4709ac14
authored
Sep 10, 2012
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#14649: add sample files omitted from previous checkin.
parent
f6cdd35b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
Lib/test/sample_doctest_no_docstrings.py
Lib/test/sample_doctest_no_docstrings.py
+12
-0
Lib/test/sample_doctest_no_doctests.py
Lib/test/sample_doctest_no_doctests.py
+15
-0
No files found.
Lib/test/sample_doctest_no_docstrings.py
0 → 100644
View file @
4709ac14
# This is a sample module used for testing doctest.
#
# This module is for testing how doctest handles a module with no
# docstrings.
class
Foo
(
object
):
# A class with no docstring.
def
__init__
(
self
):
pass
Lib/test/sample_doctest_no_doctests.py
0 → 100644
View file @
4709ac14
"""This is a sample module used for testing doctest.
This module is for testing how doctest handles a module with docstrings
but no doctest examples.
"""
class
Foo
(
object
):
"""A docstring with no doctest examples.
"""
def
__init__
(
self
):
pass
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