forked from Kentzo/Power
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
2 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Ilya Kulakov <[email protected]> | ||
Tomasz CEDRO [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,6 @@ | |
@type TIME_REMAINING_UNKNOWN: float | ||
@type TIME_REMAINING_UNLIMITED: float | ||
""" | ||
__author__ = '[email protected]' | ||
|
||
from abc import ABCMeta, abstractmethod | ||
import weakref | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
Requires Mac OS X 10.6+ | ||
See doc/darwin for platform-specific details. | ||
""" | ||
__author__ = '[email protected]' | ||
|
||
import weakref | ||
import warnings | ||
import objc | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
Implements PowerManagement functions using FreeBSD SYSCTL mechanism. | ||
FreeBSD portion written by Tomasz CEDRO (http://www.tomek.cedro.info) | ||
""" | ||
__author__ = '[email protected]' | ||
|
||
import os | ||
import warnings | ||
from power import common | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
Implements PowerManagement functions using /sys/class/power_supply/* | ||
See doc/linux for platform-specific details. | ||
""" | ||
__author__ = '[email protected]' | ||
|
||
import os | ||
import warnings | ||
from power import common | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
Requires Windows XP+. | ||
Observing is not supported | ||
""" | ||
__author__ = '[email protected]' | ||
|
||
from ctypes import Structure, wintypes, POINTER, windll, WinError, pointer, WINFUNCTYPE | ||
import warnings | ||
from power import common | ||
|