Add module docstring
authorHugh Brown <hbrown@amplify.com>
Thu, 10 Oct 2013 21:11:42 +0000 (17:11 -0400)
committerHugh Brown <hbrown@amplify.com>
Thu, 10 Oct 2013 22:41:39 +0000 (18:41 -0400)
jenkinsapi/build.py
jenkinsapi/config.py
jenkinsapi/constants.py

index 5a7a5d8..6379cbb 100644 (file)
@@ -1,3 +1,7 @@
+"""
+Build API methods
+"""
+
 import time
 import pytz
 import datetime
index fd541a6..fc28d4c 100644 (file)
@@ -1,2 +1,8 @@
+"""
+Jenkins configuration
+"""
+
+
 JENKINS_API = r"api/python"
+
 LOAD_TIMEOUT = 30
index a829fed..90f2602 100644 (file)
@@ -1,3 +1,7 @@
+"""
+Constants for jenkinsapi
+"""
+
 import re
 
 STATUS_FAIL = "FAIL"