Skip to content

Commit d15e483

Browse files
Update to 1.3.2
Changelog: + Fixes absolute paths with drive letters from being marked as having invalid characters
1 parent 9d5db32 commit d15e483

File tree

12 files changed

+8
-8
lines changed

12 files changed

+8
-8
lines changed

doc/build/doctrees/about.doctree

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

doc/build/doctrees/basics.doctree

0 Bytes
Binary file not shown.

doc/build/doctrees/classes.doctree

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

doc/build/doctrees/globals.doctree

64 Bytes
Binary file not shown.

doc/build/doctrees/index.doctree

0 Bytes
Binary file not shown.

doc/build/html/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ <h1>About<a class="headerlink" href="#about" title="Permalink to this headline">
159159
<div class="line-block">
160160
<div class="line"><strong>Project</strong>: fpclib</div>
161161
<div class="line"><strong>Author</strong>: mathgeniuszach</div>
162-
<div class="line"><strong>Version</strong>: 1.3.1.4</div>
162+
<div class="line"><strong>Version</strong>: 1.3.2.2</div>
163163
<div class="line"><strong>Special Thanks</strong>:</div>
164164
</div>
165165
<ul class="simple">

doc/build/html/globals.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ <h4><a class="toc-backref" href="#id4"><span class="hide">INVALID_CHARS</span></
374374
<dt id="fpclib.INVALID_CHARS">
375375
<code class="sig-prename descclassname">fpclib.</code><code class="sig-name descname">INVALID_CHARS</code><a class="headerlink" href="#fpclib.INVALID_CHARS" title="Permalink to this definition"></a></dt>
376376
<dd><p>A compiled pattern that matches invalid charaters to be in a folder name.</p>
377-
<p><code class="code docutils literal notranslate"><span class="pre">re.compile(r'[/&lt;&gt;:\&quot;\\\|\?\*\x00-\x1F]')</span></code></p>
377+
<p><code class="code docutils literal notranslate"><span class="pre">re.compile(r'(?&lt;!^\w)[/&lt;&gt;:\&quot;\\\|\?\*\x00-\x1F]')</span></code></p>
378378
</dd></dl>
379379

380380
</div>
@@ -384,7 +384,7 @@ <h4><a class="toc-backref" href="#id5"><span class="hide">INVALID_CHARS_NO_SLASH
384384
<dt id="fpclib.INVALID_CHARS_NO_SLASH">
385385
<code class="sig-prename descclassname">fpclib.</code><code class="sig-name descname">INVALID_CHARS_NO_SLASH</code><a class="headerlink" href="#fpclib.INVALID_CHARS_NO_SLASH" title="Permalink to this definition"></a></dt>
386386
<dd><p>A compiled pattern that matches invalid charaters to be in a folder name except forward and back-slashes.</p>
387-
<p><code class="code docutils literal notranslate"><span class="pre">re.compile(r'[&lt;&gt;:\&quot;\|\?\*\x00-\x1F]')</span></code></p>
387+
<p><code class="code docutils literal notranslate"><span class="pre">re.compile(r'(?&lt;!^\w)[&lt;&gt;:\&quot;\|\?\*\x00-\x1F]')</span></code></p>
388388
</dd></dl>
389389

390390
</div>

0 commit comments

Comments
 (0)