Re: Did i debug this code correctly?

2022-09-21 Thread Cameron Simpson
Preamble: this list strips attachments. If you attached some screenshots orfile attachments, we do no receive them. We generally don't like screenshots unless they're vital to demonstrating some visual thing. We _much_ prefer text pasted inline in the message. So the below is written about a

Re: Issue with the Installation

2022-09-21 Thread MRAB
On 2022-09-21 14:49, My Pen Services wrote: Hello, I am having an issue after installing the latest application. I do not seem to locate it on my PC nor am I able to get the shortcut for launching the application. On Windows, it should be in the main application menu. When I try running the

Re: How to replace an instance method?

2022-09-21 Thread Diego Souza
Another possibility would be to use a lambda function or a callable object. This adds an overhead but would also allow you to inject new parameters that go into the function call. It also does not require any extra import. obj.old_method_name = lambda *a, **kw: new_method_name(obj, *a, **kw) A

Did i debug this code correctly?

2022-09-21 Thread tripd...@gmail.com
I am trying to solve this job task given to my girlfriend and here's the task and what i did ~ The two Python functions liDDA and liB are supposed to solve the same task. Firstly, explain the task clearly and then fix any semantic errors in the two algorithms (so that they actually do solve

Issue with the Installation

2022-09-21 Thread My Pen Services
Hello, I am having an issue after installing the latest application. I do not seem to locate it on my PC nor am I able to get the shortcut for launching the application. When I try running the application again, I only get 3 options- 1. Customize 2. Repair 3. Uninstall What might be