Rename open function to open_process to avoid conflict with Python's …
…built-in open
Renamed the open function in the pymem package to open_process to avoid conflicts with Python's built-in open function. This change prevents errors such as AttributeError: enter when using the with statement for file operations. Updated all relevant references in the code to use the new function name.
Related issue: https://github.com/srounet/Pymem/issues/142
we probably want to keep the old open name that just calls open_process and gives a depreciation warning as to not break existing code
Thank you for the feedback. Would you like to proceed with the deprecation approach for the open function, or should we leave it as is?