summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* meminfo.py, visualize ints instead of floatsrelease-0.6.0Giampaolo Rodola'2012-08-131-1/+1
* free.py, visualize ints instead of floatsGiampaolo Rodola'2012-08-131-9/+9
* set version 0.6.0 in HISTORY file plus use comments to specify API sections i...Giampaolo Rodola'2012-08-132-27/+52
* yet another small test refactoring + CREDITS file updateGiampaolo Rodola'2012-08-092-4/+9
* another small refactoring + test fix on OSXGiampaolo Rodola'2012-08-091-12/+12
* small test refactoring which fixes some failures on OSXGiampaolo Rodola'2012-08-091-13/+25
* Fix issue 314 / get_children(): exclude children with creation time > self, m...Giampaolo Rodola'2012-08-062-5/+17
* Issue 312 (Windows): network_io_counters() - add dropped/error packets supportGiampaolo Rodola'2012-07-251-2/+6
* Issue 312 (BSD): network_io_counters() - add dropped/error packets supportGiampaolo Rodola'2012-07-252-3/+8
* Issue 312 (BSD): network_io_counters() - add dropped/error packets supportGiampaolo Rodola'2012-07-252-2/+7
* Issue 312 (Linux): network_io_counters() - add dropped/error packets supportGiampaolo Rodola'2012-07-256-4/+25
* Issue 311: merge memory branch back to trunkGiampaolo Rodola'2012-07-2425-340/+676
* Fix issue 309: introduce a isfile_strict() function as a replacement for os.p...Giampaolo Rodola'2012-07-216-7/+30
* test refactoring: introduce a new 'wait' arg for get_test_subprocess() so tha...Giampaolo Rodola'2012-07-201-70/+70
* Issue 256 (BSD): swapmem - also provide pswpin / pswpout countersGiampaolo Rodola'2012-07-202-7/+25
* Issue 256 (OSX): swapmem - also provide pswpin / pswpout countersGiampaolo Rodola'2012-07-203-25/+51
* Issue 256 (LINUX): swapmem - also provide pswpin / pswpout countersGiampaolo Rodola'2012-07-204-6/+27
* update HISTORYGiampaolo Rodola'2012-07-191-0/+3
* Fix 256: rename psutil.virtmem_usage() to psutil.swapmem_usage(); also, on Wi...Giampaolo Rodola'2012-07-1910-33/+38
* Fix issue 308: (BSD) return actual swap memory info instead of virtual memoryGiampaolo Rodola'2012-07-195-90/+20
* OSX - virtmem test: take into account that OSX uses multiple swap files as pe...Giampaolo Rodola'2012-07-191-1/+7
* (OSX) refactoring of virt/swap mem codeGiampaolo Rodola'2012-07-193-35/+9
* fix some failing tests on FreeBSD 9Giampaolo Rodola'2012-07-191-6/+8
* Fix issue 307 (BSD): values returned by psutil.network_io_counters() are wron...Giampaolo Rodola'2012-07-192-1/+2
* Fix issue 305: psutil couldn't compile on FreeBSD 9 due to removal of utmp.hGiampaolo Rodola'2012-07-193-5/+44
* setup.py refactoring: get rid of version string; from now on that gets mainta...Giampaolo Rodola'2012-07-182-13/+40
* little OSX refactoring + update version + get rid of old 'doc' directory refe...Giampaolo Rodola'2012-07-186-35/+12
* BSD little refactoringGiampaolo Rodola'2012-07-183-31/+9
* Issue 306: (Windows) check return code of Py* related functions used in get_p...Giampaolo Rodola'2012-07-181-8/+64
* OSX/Linux - pre-emptively set Py objs which are decref'd later to NULLGiampaolo Rodola'2012-07-182-3/+10
* BSD - pre-emptively set Py objs which are decref'd later to NULLGiampaolo Rodola'2012-07-181-2/+7
* Issue 306: (Windows) check return code of Py* related functionsGiampaolo Rodola'2012-07-185-79/+203
* (BSD) remove old cmdline code ignoring error and returning an empty list as i...Giampaolo Rodola'2012-07-181-21/+9
* use Py_XDECREF against the intermediate python object which has been created ...Giampaolo Rodola'2012-07-182-13/+13
* Issue 306: (OSX) check return code of Py* related functionsGiampaolo Rodola'2012-07-183-99/+193
* Issue 306: (BSD) check return code of Py* related functionsGiampaolo Rodola'2012-07-172-62/+160
* Issue 306: (Linux) check return code of Py* related functionsGiampaolo Rodola'2012-07-172-13/+32
* Fix issue 305: add examples/netstat.py scriptGiampaolo Rodola'2012-07-142-0/+53
* remove space committed by accidentGiampaolo Rodola'2012-07-141-1/+1
* When calculating 'name' property ignore AccessDenied while trying to get a mo...Giampaolo Rodola'2012-07-142-5/+10
* Forgot to modify the pyhon layer for get_memory_info()Giampaolo Rodola'2012-07-131-6/+11
* Give some tolerance to memory testGiampaolo Rodola'2012-07-131-3/+8
* Issue 303 - Windows/get_memory_info(): use NtQuerySystemInformation() as fall...Giampaolo Rodola'2012-07-136-8/+64
* Issue 303 - Windows/get_io_counters(): use NtQuerySystemInformation() as fall...Giampaolo Rodola'2012-07-136-3/+44
* Issue 303 - Windows/get_num_handles(): use NtQuerySystemInformation() as fall...Giampaolo Rodola'2012-07-135-61/+111
* Issue 303 - Windows/get_create_time(): use NtQuerySystemInformation() as fall...Giampaolo Rodola'2012-07-133-4/+61
* Issue 303 - Windows/get_cpu_times: use NtQuerySystemInformation() as fallback...Giampaolo Rodola'2012-07-135-9/+114
* Windows: fix some compiler warningsGiampaolo Rodola'2012-07-131-2/+1
* Export ERROR_ACCESS_DENIED directly from windows.h instead of hard-declaring ...Giampaolo Rodola'2012-07-132-1/+2
* Windows: little refactoring about C function names.Giampaolo Rodola'2012-07-133-10/+12