-
Notifications
You must be signed in to change notification settings - Fork 0
/
CONTRIBUTING
47 lines (33 loc) · 1.31 KB
/
CONTRIBUTING
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
============
Contributing
============
For more information, please see the official contribution docs at
http://docs.pythonboto.org/en/latest/contributing.html.
Contributing Code
=================
* A good patch:
* is clear.
* works across all supported versions of Python.
* follows the existing style of the code base (PEP-8).
* has comments included as needed.
* A test case that demonstrates the previous flaw that now passes
with the included patch.
* If it adds/changes a public API, it must also include documentation
for those changes.
* Must be appropriately licensed (New BSD).
Reporting An Issue/Feature
==========================
* Check to see if there's an existing issue/pull request for the
bug/feature. All issues are at https://github.com/boto/boto/issues
and pull reqs are at https://github.com/boto/boto/pulls.
* If there isn't an existing issue there, please file an issue. The ideal
report includes:
* A description of the problem/suggestion.
* How to recreate the bug.
* If relevant, including the versions of your:
* Python interpreter
* boto
* Optionally of the other dependencies involved
* If possile, create a pull request with a (failing) test case demonstrating
what's wrong. This makes the process for fixing bugs quicker & gets issues
resolved sooner.