Created
          December 29, 2011 09:03 
        
      - 
      
 - 
        
Save heavenshell/1533093 to your computer and use it in GitHub Desktop.  
    For Unite-outline issue
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/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 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/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