5865 "CompressionThreshold": 70, # default value |
5866 "CompressionThreshold": 70, # default value |
5866 "CompressLevel": 0, # use zlib default |
5867 "CompressLevel": 0, # use zlib default |
5867 "CompressionDisable": False, |
5868 "CompressionDisable": False, |
5868 "PathPrefix": "", |
5869 "PathPrefix": "", |
5869 } |
5870 } |
|
5871 |
|
5872 ######################################################################### |
|
5873 ## Below are methods implementing some 'docstring' support functions |
|
5874 ######################################################################### |
|
5875 |
|
5876 def hasDefaultDocstringParameter(self): |
|
5877 """ |
|
5878 Public method to test, if the project contains the default docstring |
|
5879 parameter. |
|
5880 |
|
5881 @return flag indicating default parameter |
|
5882 @rtype bool |
|
5883 """ |
|
5884 return self.pdata["DOCSTRING"] == "" |
|
5885 |
|
5886 def getDocstringType(self): |
|
5887 """ |
|
5888 Public method to get the configured docstring style. |
|
5889 |
|
5890 @return configured docstring style |
|
5891 @rtype str |
|
5892 """ |
|
5893 return self.pdata["DOCSTRING"] |
5870 |
5894 |
5871 # |
5895 # |
5872 # eflag: noqa = M601 |
5896 # eflag: noqa = M601 |