Skip to content

Commit a92e16b

Browse files
Autorefresh Dev Documentation
1 parent 27ea304 commit a92e16b

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

dev/_modules/libdebug/debugger/debugger.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,7 @@ <h1>Source code for libdebug.debugger.debugger</h1><div class="highlight"><pre>
454454
<span class="kn">from</span> <span class="nn">libdebug.data.syscall_handler</span> <span class="kn">import</span> <span class="n">SyscallHandler</span>
455455
<span class="kn">from</span> <span class="nn">libdebug.debugger.internal_debugger</span> <span class="kn">import</span> <span class="n">InternalDebugger</span>
456456
<span class="kn">from</span> <span class="nn">libdebug.state.thread_context</span> <span class="kn">import</span> <span class="n">ThreadContext</span>
457+
<span class="kn">from</span> <span class="nn">libdebug.utils.pipe_manager</span> <span class="kn">import</span> <span class="n">PipeManager</span>
457458

458459

459460
<div class="viewcode-block" id="Debugger">
@@ -480,7 +481,7 @@ <h1>Source code for libdebug.debugger.debugger</h1><div class="highlight"><pre>
480481

481482
<div class="viewcode-block" id="Debugger.run">
482483
<a class="viewcode-back" href="../../../libdebug.debugger.html#libdebug.debugger.debugger.Debugger.run">[docs]</a>
483-
<span class="k">def</span> <span class="nf">run</span><span class="p">(</span><span class="bp">self</span><span class="p">:</span> <span class="n">Debugger</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="kc">None</span><span class="p">:</span>
484+
<span class="k">def</span> <span class="nf">run</span><span class="p">(</span><span class="bp">self</span><span class="p">:</span> <span class="n">Debugger</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="n">PipeManager</span><span class="p">:</span>
484485
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Starts the process and waits for it to stop.&quot;&quot;&quot;</span>
485486
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_internal_debugger</span><span class="o">.</span><span class="n">run</span><span class="p">()</span></div>
486487

@@ -717,12 +718,12 @@ <h1>Source code for libdebug.debugger.debugger</h1><div class="highlight"><pre>
717718

718719
<div class="viewcode-block" id="Debugger.r">
719720
<a class="viewcode-back" href="../../../libdebug.debugger.html#libdebug.debugger.debugger.Debugger.r">[docs]</a>
720-
<span class="k">def</span> <span class="nf">r</span><span class="p">(</span><span class="bp">self</span><span class="p">:</span> <span class="n">Debugger</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="kc">None</span><span class="p">:</span>
721+
<span class="k">def</span> <span class="nf">r</span><span class="p">(</span><span class="bp">self</span><span class="p">:</span> <span class="n">Debugger</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="n">PipeManager</span><span class="p">:</span>
721722
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Alias for the `run` method.</span>
722723

723724
<span class="sd"> Starts the process and waits for it to stop.</span>
724725
<span class="sd"> &quot;&quot;&quot;</span>
725-
<span class="bp">self</span><span class="o">.</span><span class="n">_internal_debugger</span><span class="o">.</span><span class="n">run</span><span class="p">()</span></div>
726+
<span class="k">return</span> <span class="bp">self</span><span class="o">.</span><span class="n">_internal_debugger</span><span class="o">.</span><span class="n">run</span><span class="p">()</span></div>
726727

727728

728729
<div class="viewcode-block" id="Debugger.c">

dev/_modules/libdebug/debugger/internal_debugger.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ <h1>Source code for libdebug.debugger.internal_debugger</h1><div class="highligh
681681

682682
<div class="viewcode-block" id="InternalDebugger.run">
683683
<a class="viewcode-back" href="../../../libdebug.debugger.html#libdebug.debugger.internal_debugger.InternalDebugger.run">[docs]</a>
684-
<span class="k">def</span> <span class="nf">run</span><span class="p">(</span><span class="bp">self</span><span class="p">:</span> <span class="n">InternalDebugger</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="kc">None</span><span class="p">:</span>
684+
<span class="k">def</span> <span class="nf">run</span><span class="p">(</span><span class="bp">self</span><span class="p">:</span> <span class="n">InternalDebugger</span><span class="p">)</span> <span class="o">-&gt;</span> <span class="n">PipeManager</span><span class="p">:</span>
685685
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Starts the process and waits for it to stop.&quot;&quot;&quot;</span>
686686
<span class="k">if</span> <span class="ow">not</span> <span class="bp">self</span><span class="o">.</span><span class="n">argv</span><span class="p">:</span>
687687
<span class="k">raise</span> <span class="ne">RuntimeError</span><span class="p">(</span><span class="s2">&quot;No binary file specified.&quot;</span><span class="p">)</span>

dev/libdebug.debugger.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Link to this headi
476476

477477
<dl class="py method">
478478
<dt class="sig sig-object py" id="libdebug.debugger.debugger.Debugger.run">
479-
<span class="sig-name descname"><span class="pre">run</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><span class="pre">None</span></span></span><a class="reference internal" href="_modules/libdebug/debugger/debugger.html#Debugger.run"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#libdebug.debugger.debugger.Debugger.run" title="Link to this definition">#</a></dt>
479+
<span class="sig-name descname"><span class="pre">run</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><a class="reference internal" href="libdebug.utils.html#libdebug.utils.pipe_manager.PipeManager" title="libdebug.utils.pipe_manager.PipeManager"><span class="pre">PipeManager</span></a></span></span><a class="reference internal" href="_modules/libdebug/debugger/debugger.html#Debugger.run"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#libdebug.debugger.debugger.Debugger.run" title="Link to this definition">#</a></dt>
480480
<dd><p>Starts the process and waits for it to stop.</p>
481481
</dd></dl>
482482

@@ -682,7 +682,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Link to this headi
682682

683683
<dl class="py method">
684684
<dt class="sig sig-object py" id="libdebug.debugger.debugger.Debugger.r">
685-
<span class="sig-name descname"><span class="pre">r</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><span class="pre">None</span></span></span><a class="reference internal" href="_modules/libdebug/debugger/debugger.html#Debugger.r"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#libdebug.debugger.debugger.Debugger.r" title="Link to this definition">#</a></dt>
685+
<span class="sig-name descname"><span class="pre">r</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><a class="reference internal" href="libdebug.utils.html#libdebug.utils.pipe_manager.PipeManager" title="libdebug.utils.pipe_manager.PipeManager"><span class="pre">PipeManager</span></a></span></span><a class="reference internal" href="_modules/libdebug/debugger/debugger.html#Debugger.r"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#libdebug.debugger.debugger.Debugger.r" title="Link to this definition">#</a></dt>
686686
<dd><p>Alias for the <cite>run</cite> method.</p>
687687
<p>Starts the process and waits for it to stop.</p>
688688
</dd></dl>
@@ -1056,7 +1056,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Link to this headi
10561056

10571057
<dl class="py method">
10581058
<dt class="sig sig-object py" id="libdebug.debugger.internal_debugger.InternalDebugger.run">
1059-
<span class="sig-name descname"><span class="pre">run</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><span class="pre">None</span></span></span><a class="reference internal" href="_modules/libdebug/debugger/internal_debugger.html#InternalDebugger.run"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#libdebug.debugger.internal_debugger.InternalDebugger.run" title="Link to this definition">#</a></dt>
1059+
<span class="sig-name descname"><span class="pre">run</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span> <span class="sig-return"><span class="sig-return-icon">&#x2192;</span> <span class="sig-return-typehint"><a class="reference internal" href="libdebug.utils.html#libdebug.utils.pipe_manager.PipeManager" title="libdebug.utils.pipe_manager.PipeManager"><span class="pre">PipeManager</span></a></span></span><a class="reference internal" href="_modules/libdebug/debugger/internal_debugger.html#InternalDebugger.run"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#libdebug.debugger.internal_debugger.InternalDebugger.run" title="Link to this definition">#</a></dt>
10601060
<dd><p>Starts the process and waits for it to stop.</p>
10611061
</dd></dl>
10621062

0 commit comments

Comments
 (0)