Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ nosetests.xml
# Mac OS X
.DS_Store

# Visual Studio code
.vscode
4 changes: 4 additions & 0 deletions doxypypy/test/sample_google.out.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,15 @@ class SampleClass():
## @property eggs
# An integer count of the eggs we have laid.

## @property versionx
# The version of eggs and ham.

## @brief Inits SampleClass with blah.
# @namespace sample_google.SampleClass.__init__
def __init__(self, likes_spam=False):
self.likes_spam = likes_spam
self.eggs = 0
self.versionx = 1

## @brief Performs operation blah.
# @namespace sample_google.SampleClass.public_method
Expand Down
2 changes: 2 additions & 0 deletions doxypypy/test/sample_google.outbare.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@ def fetch_bigtable_rows(big_table, keys, other_silly_variable=None):
# Attributes:
# likes_spam: A boolean indicating if we like SPAM or not.
# eggs: An integer count of the eggs we have laid.
# versionx: The version of eggs and ham.
#
class SampleClass():

##Inits SampleClass with blah.
def __init__(self, likes_spam=False):
self.likes_spam = likes_spam
self.eggs = 0
self.versionx = 1

##Performs operation blah.
def public_method(self):
Expand Down
4 changes: 4 additions & 0 deletions doxypypy/test/sample_google.outnc.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,15 @@ class SampleClass():
## @property eggs
# An integer count of the eggs we have laid.

## @property versionx
# The version of eggs and ham.

## @brief Inits SampleClass with blah.
# @namespace sample_google.SampleClass.__init__
def __init__(self, likes_spam=False):
self.likes_spam = likes_spam
self.eggs = 0
self.versionx = 1

## @brief Performs operation blah.
# @namespace sample_google.SampleClass.public_method
Expand Down
4 changes: 4 additions & 0 deletions doxypypy/test/sample_google.outnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,14 @@ class SampleClass():
## @property eggs
# An integer count of the eggs we have laid.

## @property versionx
# The version of eggs and ham.

## @brief Inits SampleClass with blah.
def __init__(self, likes_spam=False):
self.likes_spam = likes_spam
self.eggs = 0
self.versionx = 1

## @brief Performs operation blah.
def public_method(self):
Expand Down
2 changes: 2 additions & 0 deletions doxypypy/test/sample_google.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,14 @@ class SampleClass(object):
Attributes:
likes_spam: A boolean indicating if we like SPAM or not.
eggs: An integer count of the eggs we have laid.
versionx: The version of eggs and ham.
"""

def __init__(self, likes_spam=False):
"""Inits SampleClass with blah."""
self.likes_spam = likes_spam
self.eggs = 0
self.versionx = 1

def public_method(self):
"""Performs operation blah."""
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39,py38,py37,py27
envlist = py310,py39,py38,py37,py27
skip_missing_interpreters = true
[testenv]
# install testing framework
Expand Down