iLoveTux / pyservice

Cross-platform service library, turn your Python script into a service!
GNU General Public License v2.0
0 stars 0 forks source link

private variables in PyService class are backwards #11

Closed iLoveTux closed 8 years ago

iLoveTux commented 8 years ago

We are creating the cross-platform public API in PyService, but all action methods are prefixed with an underscore while the platform specific classes are not prefixed with an underscore. To make it more sensible to newcomers, we should make the platform specific methods private (ie. prefixed with an underscore) and the public API public (ie not prefixed with an underscore).