diff options
author | Travis Oliphant <oliphant@enthought.com> | 2009-03-04 17:14:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2009-03-04 17:14:10 +0000 |
commit | ac6175fedfe335acb652f8ea5eaf000653041803 (patch) | |
tree | a9b00487aa62926e8a44144ef5bb1c85efd5922c /DEV_README.txt | |
parent | 8fb48b7752e891226265da0d7108b69782b22213 (diff) | |
download | numpy-ac6175fedfe335acb652f8ea5eaf000653041803.tar.gz |
Minor changes to DEV_README + fix to a 64-bit issue.
Diffstat (limited to 'DEV_README.txt')
-rw-r--r-- | DEV_README.txt | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/DEV_README.txt b/DEV_README.txt index 7ff48eb95..ae9b59fb6 100644 --- a/DEV_README.txt +++ b/DEV_README.txt @@ -1,15 +1,19 @@ Thank you for your willingness to help make NumPy the best array system available. -The only rules we like to follow are to try hard to keep the SVN -repository in a buildable state and to not indiscriminately muck with -what others have contributed. +We have a few simple rules: -Simple changes and obvious improvements are always welcome. Changes -that fundamentally change behavior need discussion on -numpy-discussions@scipy.org before anything is done. + * try hard to keep the SVN repository in a buildable state and to not + indiscriminately muck with what others have contributed. + * Simple changes (including bug fixes) and obvious improvements are + always welcome. Changes that fundamentally change behavior need + discussion on numpy-discussions@scipy.org before anything is + done. + + * Please add meaningful comments when you check changes in. These + comments form the basis of the change-log. + + * Add unit tests to excercise new code, and regression tests + whenever you fix a bug. -Please add meaningful comments when you check changes in. These comments -form the basis of the change-log. Add unit tests to excercise new -code, and regression tests whenever you fix a bug. |