Marcel Wilson
- Total activity 223
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 26
- Subscriptions 73
-
Edited Stepping into datetime possible?
I'm trying to step into any datetime functions or methods. Example, I want to step into datetime.now() Debugger stops on line 4, but when I click 'step into' it skips the call and goes to line 5. ... -
Created How do you mark a class as deprecated?
What is the proper way to get pycharm to mark a class as being deprecated? I've seen functions and methods get crossed out, but I can't seem to get classes to appear with the strike through. Anyon... -
Created Git log branch lines
Answered1. Is there anyway to control the color of branch lines in the VCS git log? (either natively or via addon) 2. Is there some way to cleanup the visualization of branches? They often look like spag... -
Edited Some imported packages do not highlight in editor
I'm trying to understand the behavior I'm seeing in 2020.1. (to be perfectly honest I can't remember if it worked like this in 2019)Some packages do not appear to highlight their read and write us... -
Created Is PyCharm going to add 'parameter hints' like Intellij has?
Intellij has a pretty neat feature where it displays parameter hints for function calls. I'm curious if PyCharm will ever incorporate this feature? It looks like PyCharm has the foundations to su... -
Created keep maximum blank lines not working?
In my python code style I have "Keep Maximum Blank Lines" set to 9 lines. However, when I trigger reformat code, all multiple blank lines in my function are reduced to a single blank line. Am I ... -
Created 2018.2 type hint error at debug runtime?
I have a function which when I look at Quick Documentation gives me the suggested typehint of OrderedDict[str, str], yet when I manually add that typehint I run into an error at debug runtime. def ... -
Edited How do you show class argument hierarchy?
AnsweredI want to pull up the Show Usage for a class argument (parameter) that is passed into a base class. Is it possible to do this? (in case I'm not describing this properly) Say I have the followin... -
Created Where did the skeleton progress bar go? (2017.2)
AnsweredI just installed 2017.2 (upgrade from 2017.1.3) and I noticed the skeleton progress bar is missing from the bottom of the application. I know it's running because when I attempt to close the appli... -
Created Is it possible to disable portion of an inspection?
Answered2017.1.3 inspection detects this code as "Unexpected Argument". import timetVar = time.time()print long(tVar) https://youtrack.jetbrains.com/issue/PY-24286 appears to be the issue. I'm curious if...