##// END OF EJS Templates
Clear filter
Show hidden
Commit Message Age Author Refs
load previous
r26814:1d1ab2a3
Merge pull request #13162 from minrk/base64-mpl-figures print_figure return base64 str instead of bytes
Matthias Bussonnier
merge
0
r26813:ff1e6b07
Merge pull request #13157 from Carreau/debugger-file Add history file to debugger
Min RK
merge
0
r26812:4a2e85fa
print_figure return base64 str instead of bytes sending bytes relies on serializer's `default` functionality, where we can just send the right thing here this used to be ambiguous on Python 2, but not anymore
Min RK
0
r26811:d03a6c07
Apply suggestions from code review Co-authored-by: Blazej Michalik <6691643+MrMino@users.noreply.github.com>
Matthias Bussonnier
0
r26810:b27ed6b5
Allow decorator frames to be marked as skippable. When done so, by default pdb will step over those frames and directly into the decorated functions. >>> def helper_1(): ... print("don't step in me") ... ... ... def helper_2(): ... print("in me neither") ... One can define a decorator that wrap a function between the two helpers: >>> def pdb_skipped_decorator(function): ... ... ... def wrapped_fn(*args, **kwargs): ... __debuggerskip__ = True ... helper_1() ... __debuggerskip__ = False ... result = function(*args, **kwargs) ... __debuggerskip__ = True ... helper_2() ... return result ... ... return wrapped_fn When decorating a function, ipdb will directly step into ``bar()`` by default: >>> @foo_decorator ... def bar(x, y): ... return x * y You can toggle the behavior with ipdb> skip_predicates debuggerskip False or configure it in your ``.pdbrc``
Matthias Bussonnier
0
r26809:20281a01
Add history file to debugger. This adds a configurable `InteractiveShell.debugger_history_file=...` which default to `~/.pdbhistory`, that store what is typed in ipdb; this make it easy to persist across sessions. Some of the logic is moved into the debugger itself so that existance and creation of file is used only once Pdb is started.
Matthias Bussonnier
0
r26808:a09e5776
Merge branch 'master' into alt_text
blois
merge
0
r26803:c223896f
Merge pull request #13158 from Carreau/wn-728 What's new 7.28
Matthias Bussonnier
merge
0
r26802:24a283a9
What's new 7.28
Matthias Bussonnier
0
r26798:a8accc9a
Merge pull request #13153 from Mithil467/mithil_master Adapt to all sorts of drive names for cygwin
Blazej Michalik
merge
0
r26797:338ffdca
Use pathlib comparison over string comparison
Mithil Poojary
0
r26796:fe042603
Adapt to all sorts of drive names Earlier implementation assumed the drive name to be C and ignored the possibility of it being different. Drive names could also be greater than 1 in length. This possibility is also considered now.
Mithil Poojary
0
r26789:455e4afd
Reword a WN entry
Blazej Michalik
0
r26787:ffe9e404
Merge pull request #13147 from MrMino/yta-whats-new-reword Reword the YouTubeVideo autoplay WN
Blazej Michalik
merge
0
r26786:66774096
Reword the YouTubeVideo autoplay WN This should make it easier for the reader to understand the feature and know what to expect. Also, I couldn't help myself. I Never Gonna miss such opportunity. 🎶 Badum-ba-dubaba 🎶
Blazej Michalik
0
r26781:100ff058
Merge pull request #13133 from yuji96/youtube-allow-autoplay enable autoplay in embed youtube player
Blazej Michalik
merge
0
r26780:b7e2c5a8
add docs: whats new entry
yuji96
0
r26779:1041f446
don't overwrite extras entered by user
yuji96
0
r26778:b709866b
replace extra (str) -> extras (iterable)
yuji96
0
r26777:49d02f78
fix coding style with darker
yuji96
0
load next
< 1 .. 5 6 7 8 9 .. 1268 >
showing 20 out of 25358 commits