Skip to content

Instantly share code, notes, and snippets.

@heavenshell
Created December 29, 2011 09:03
Show Gist options
  • Save heavenshell/1533093 to your computer and use it in GitHub Desktop.
Save heavenshell/1533093 to your computer and use it in GitHub Desktop.
For Unite-outline issue
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class Sample(object):
def __init__(self):
""" init """
pass
def none_docstring(self):
pass
def docstring(self):
"""
Foo/bar
:param self:
"""
pass
def foo(self):
pass
#!/usr/bin/env python
# -*- coding: utf-8 -*-
class Sample(object):
def __init__(self):
pass
def none_docstring(self):
pass
def docstring(self):
"""
Foo/bar
:param self:
"""
pass
def foo(self):
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment