Skip to content

Commit

Permalink
fix #636: (Windows): Process.memory_info() raises AccessDenied
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jul 9, 2015
1 parent 75c1554 commit 73f54f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions HISTORY.rst
Expand Up @@ -5,11 +5,12 @@ Bug tracker at https://github.com/giampaolo/psutil/issues

**Bug fixes**

- #636: [Linux] *connections functions may swallow errors and return an
incomplete list of connnections.
- #636: [Windows] Process.memory_info() raise AccessDenied.
- #637: [UNIX] raise exception if trying to send signal to Process PID 0 as it
will affect os.getpid()'s process group instead of PID 0.
- #639: [Linux] Process.cmdline() can be truncated.
- #640: [Linux] *connections functions may swallow errors and return an
incomplete list of connnections.

3.0.1 - 2015-06-18
Expand Down
2 changes: 1 addition & 1 deletion psutil/_psutil_windows.c
Expand Up @@ -3201,7 +3201,7 @@ PsutilMethods[] =
"seconds since the epoch"},
{"proc_memory_info", psutil_proc_memory_info, METH_VARARGS,
"Return a tuple of process memory information"},
{"proc_memory_info_2", psutil_proc_memory_info, METH_VARARGS,
{"proc_memory_info_2", psutil_proc_memory_info_2, METH_VARARGS,
"Alternate implementation"},
{"proc_cwd", psutil_proc_cwd, METH_VARARGS,
"Return process current working directory"},
Expand Down

0 comments on commit 73f54f4

Please sign in to comment.