The development version

Unit tests

https://travis-ci.org/libgit2/pygit2.svg?branch=masterhttps://ci.appveyor.com/api/projects/status/edmwc0dctk5nacx0/branch/master?svg=true

  1. $ git clone git://github.com/libgit2/pygit2.git
  2. $ cd pygit2
  3. $ python setup.py build_ext --inplace
  4. $ pytest test

Coding style: documentation strings

Example:

  1. def f(a, b):
  2. """
  3. The general description goes here.
  4.  
  5. Returns: bla bla.
  6.  
  7. Parameters:
  8.  
  9. a : <type>
  10. Bla bla.
  11.  
  12. b : <type>
  13. Bla bla.
  14.  
  15. Examples::
  16.  
  17. >>> f(...)
  18. """