summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Get rid of MANIFEST file.release-0.1.1Giampaolo Rodola'2009-03-061-30/+0
* Updated MANIFEST file trough "python setup.py sdist".Giampaolo Rodola'2009-03-061-1/+13
* Updated HISTORY file for 0.1.1 releaseJay Loden2009-03-061-3/+28
* Updated static HTML doc/* files.Giampaolo Rodola'2009-03-062-21/+49
* Modified version in setup.py.Giampaolo Rodola'2009-03-061-5/+8
* Per discussion with Jay removed username/groupname code.Giampaolo Rodola'2009-03-063-70/+7
* Added $Id$ keyword to all source files.Jay Loden2009-03-0510-10/+24
* Enabled $Id$ keyword for Python and C source code filesJay Loden2009-03-051-3/+3
* Implemented dummy get_username and get_group for Windows platform untilJay Loden2009-03-031-0/+8
* Removed username/group from PID 0 special case since those parameters are noJay Loden2009-03-031-1/+1
* Removed code for BSD and OS X username/groupname which is now in psutil.pyJay Loden2009-03-033-15/+7
* __eq__ now compares the Process objects directly instead of _procinfo Process...Jay Loden2009-03-031-6/+17
* username/groupname implemented for UNIX platforms and modified __eq__ to onlyJay Loden2009-03-032-9/+23
* Added docstrings to __init__ and deproxy() and also added str() call inJay Loden2009-03-021-0/+12
* test_fetch_all modified so we can ignore legit errors for NoSuchProcess orJay Loden2009-03-021-1/+10
* get_name now uses a toolhelp snapshot instead of reading EnumProcessModules, ...Jay Loden2009-03-023-174/+142
* OS X was also adding a second PID 0 unnecessarily, so removed that. test caseJay Loden2009-03-022-280/+279
* Fixed Issue 30, pid 0 was listed twice in list returned by get_pid_list(). Al...Giampaolo Rodola'2009-03-022-4/+2
* Implemented username/groupname on OSX.Giampaolo Rodola'2009-03-021-2/+7
* Implemented username/groupname for FreeBSDGiampaolo Rodola'2009-03-022-3/+12
* (Issue 14) Implemented username/groupname properties for Linux including tests.Giampaolo Rodola'2009-03-023-13/+57
* If OpenProcess fails in get_name() we try again with only PROCESS_QUERY_INFOR...Jay Loden2009-03-021-2/+9
* Assume access denied error in pid_exists means the process existsJay Loden2009-03-021-0/+11
* Removed need for pid_exists() check in get_process_info - looks like sysctl()Jay Loden2009-03-021-9/+10
* Removed debugging printf() from pid_is_runningJay Loden2009-03-011-1/+0
* pid_exists now uses pid_is_running instead of pid_in_proclist to find if the ...Jay Loden2009-03-014-11/+44
* Removed pid_exists() check in get_process_info() since BSD seems to correctlyJay Loden2009-03-011-4/+3
* added case to get_process_info() to throw an exception for NoSuchProcess if s...Jay Loden2009-03-011-2/+6
* Moved process name reading code into separate function that returns None if t...Jay Loden2009-02-284-139/+199
* Fixed an error in the test suite setting self.proc = None then trying to acce...Jay Loden2009-02-271-3/+4
* When a test case kills a process "self.proc = None" should be put *before* te...Giampaolo Rodola'2009-02-271-5/+3
* Reverting Issue #27 < & > rich comparison related changes.Giampaolo Rodola'2009-02-272-25/+0
* Modified wrap_privileges decorator which now catches OSError EACCES instead o...Giampaolo Rodola'2009-02-271-5/+2
* Fixed test case for test_kill() and kill_process() C code now only asks for P...Jay Loden2009-02-272-6/+7
* Patch to avoid a race condition where EnumProcessModules fails with partial m...Jay Loden2009-02-261-10/+30
* (related to Issue 19: Get rid of time.sleep() usage in the test suite)Giampaolo Rodola'2009-02-261-10/+23
* Fixed memory leaks on Windows from memory that wasn't freed and Python object...Jay Loden2009-02-262-18/+47
* Fixed memory leak in OS X code (missing calls to free() as well as missingJay Loden2009-02-264-65/+42
* Assert parameter passed to Process is an integer otherwise raise ValueError.Giampaolo Rodola'2009-02-262-0/+5
* Fixed memory leaks in BSD codebase caused by missing free() after getcmdargs()Jay Loden2009-02-262-14/+33
* Added test cases for Process(0).name on OSX and FreeBSD.Giampaolo Rodola'2009-02-261-2/+4
* (fix issue 27) Implemented < and > Process object comparisons.Giampaolo Rodola'2009-02-262-0/+25
* Python code cleanup (80 chars per line, trailing spaces, docstring/comments t...Giampaolo Rodola'2009-02-265-42/+42
* (Fix issue 26) added a process_iter() module level function.Giampaolo Rodola'2009-02-262-9/+21
* Fixed compiler warning on WindowsJay Loden2009-02-251-1/+1
* removed unused variable from getcmdargs()Jay Loden2009-02-251-1/+0
* Cleaned up a whole bunch of unnecessary code in getcmdargs left overJay Loden2009-02-251-39/+5
* Fixed a bunch of compiler warnings that turned up on FreeBSD if using gccJay Loden2009-02-255-14/+9
* Fixed issue #25Jay Loden2009-02-252-6/+6
* BSD support added to psutil for all functions currently supported on OS X, Wi...Jay Loden2009-02-258-0/+546