Repro:
1) Get last pykd from PyPI for python x86
2) Run python REPL and type commands:
```
from pykd import *
startProcess('notepad.exe')
ntdll = module('ntdll')
ntdll.enumSymbols('Zw*')
```
Expected:
list of functions which names begin Zw
In fact:
empty list
For x64 versions it works as expected
Comments: ** Comment from web user: EreTIk **
1) Get last pykd from PyPI for python x86
2) Run python REPL and type commands:
```
from pykd import *
startProcess('notepad.exe')
ntdll = module('ntdll')
ntdll.enumSymbols('Zw*')
```
Expected:
list of functions which names begin Zw
In fact:
empty list
For x64 versions it works as expected
Comments: ** Comment from web user: EreTIk **
Fixed (changeset 90858)