<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Doc/using, branch benjamin-pyapi</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>bpo-34317: Fix a dead url to Windows documentation (GH-8622)</title>
<updated>2018-08-03T02:44:06+00:00</updated>
<author>
<name>HiyashiChuka</name>
<email>41299525+hiyashichuka@users.noreply.github.com</email>
</author>
<published>2018-08-03T02:44:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=46ebe61c7f3511b97268b44d5373a9e9cf0b5cc7'/>
<id>46ebe61c7f3511b97268b44d5373a9e9cf0b5cc7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos &amp; formatting in Using Python on Windows doc (GH-8559)</title>
<updated>2018-07-30T17:11:30+00:00</updated>
<author>
<name>Segev Finer</name>
<email>segev208@gmail.com</email>
</author>
<published>2018-07-30T17:11:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8e7e8bd8984068e3245d64b9a21e6840880747af'/>
<id>8e7e8bd8984068e3245d64b9a21e6840880747af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-24356: Specify which Python binary will be used with venv (GH-6589)</title>
<updated>2018-07-28T12:58:05+00:00</updated>
<author>
<name>Elena Oat</name>
<email>oat.elena@gmail.com</email>
</author>
<published>2018-07-28T12:58:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=50326927465c3f5c6c0168fc43310c8e97db0a47'/>
<id>50326927465c3f5c6c0168fc43310c8e97db0a47</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30660: Doc: Optimize PNG files by optipng (GH-8032)</title>
<updated>2018-07-01T07:02:52+00:00</updated>
<author>
<name>INADA Naoki</name>
<email>methane@users.noreply.github.com</email>
</author>
<published>2018-07-01T07:02:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c6cd164cffedb306a4c6644d9d03072f24da246d'/>
<id>c6cd164cffedb306a4c6644d9d03072f24da246d</id>
<content type='text'>
Using OptiPNG 0.7.7.
Used command is: `find . -name '*.png' | xargs optipng -o7`</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using OptiPNG 0.7.7.
Used command is: `find . -name '*.png' | xargs optipng -o7`</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33859: Fix spelling mistakes in docs. (GH-7691)</title>
<updated>2018-06-16T05:08:31+00:00</updated>
<author>
<name>Xtreak</name>
<email>tirkarthi@users.noreply.github.com</email>
</author>
<published>2018-06-16T05:08:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c151f7846d6d900c22edaaa77f5f7771b529099e'/>
<id>c151f7846d6d900c22edaaa77f5f7771b529099e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33499: Add PYTHONPYCACHEPREFIX env var for alt bytecode cache location. (GH-6834)</title>
<updated>2018-06-16T04:40:56+00:00</updated>
<author>
<name>Carl Meyer</name>
<email>carl@oddbird.net</email>
</author>
<published>2018-06-16T04:40:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=b193fa996a746111252156f11fb14c12fd6267e6'/>
<id>b193fa996a746111252156f11fb14c12fd6267e6</id>
<content type='text'>
In some development setups it is inconvenient or impossible to write bytecode
caches to the code tree, but the bytecode caches are still useful. The
PYTHONPYCACHEPREFIX environment variable allows specifying an alternate
location for cached bytecode files, within which a directory tree mirroring the code
tree will be created. This cache tree is then used (for both reading and writing)
instead of the local `__pycache__` subdirectory within each source directory.

Exposed at runtime as sys.pycache_prefix (defaulting to None), and can
be set from the CLI as "-X pycache_prefix=path".

Patch by Carl Meyer.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In some development setups it is inconvenient or impossible to write bytecode
caches to the code tree, but the bytecode caches are still useful. The
PYTHONPYCACHEPREFIX environment variable allows specifying an alternate
location for cached bytecode files, within which a directory tree mirroring the code
tree will be created. This cache tree is then used (for both reading and writing)
instead of the local `__pycache__` subdirectory within each source directory.

Exposed at runtime as sys.pycache_prefix (defaulting to None), and can
be set from the CLI as "-X pycache_prefix=path".

Patch by Carl Meyer.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33409: Clarify PEP 538/540 relationship (GH-7534)</title>
<updated>2018-06-09T06:54:08+00:00</updated>
<author>
<name>Nick Coghlan</name>
<email>ncoghlan@gmail.com</email>
</author>
<published>2018-06-09T06:54:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1bcb8a636857e3383d65aaf196f93edb949f2e79'/>
<id>1bcb8a636857e3383d65aaf196f93edb949f2e79</id>
<content type='text'>
While locale coercion and UTF-8 mode turned out to
be complementary ideas rather than competing ones,
it isn't immediately obvious why it's useful to
have both, or how they interact at runtime.

This updates both the Python 3.7 What's New doc
and the PYTHONCOERCECLOCALE and PYTHONUTF8
documentation in an attempt to clarify that
relationship:

- in the respective What's New sections, add a closing paragraph
  explaining which problem each one solves, and pointing to the
  other PEP's section for the specific aspects it relies on the other
  PEP to solve
- use "locale-aware mode" as a more descriptive term for the
  default non-UTF-8 mode
- improve wording conistenccy between the PYTHONCOERCECLOCALE
  and PYTHONUTF8 docs when they cover the same thing (mostly
  related to legacy locale detection and setting the standard
  stream error handler)
- improve the description of the locale coercion trigger conditions
  (including pointing out that setting LC_ALL turns off locale coercion)
- port the full description of the UTF-8 mode behaviour changes
  from PEP 540 into the PYTHONUTF8 documentation
- be explicit that PYTHONIOENCODING still overrides the settings
  for the standard streams
- mention concrete examples of things that do and don't get their
  text encoding assumptions adjusted by the two text encoding
  assumption override techniques
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
While locale coercion and UTF-8 mode turned out to
be complementary ideas rather than competing ones,
it isn't immediately obvious why it's useful to
have both, or how they interact at runtime.

This updates both the Python 3.7 What's New doc
and the PYTHONCOERCECLOCALE and PYTHONUTF8
documentation in an attempt to clarify that
relationship:

- in the respective What's New sections, add a closing paragraph
  explaining which problem each one solves, and pointing to the
  other PEP's section for the specific aspects it relies on the other
  PEP to solve
- use "locale-aware mode" as a more descriptive term for the
  default non-UTF-8 mode
- improve wording conistenccy between the PYTHONCOERCECLOCALE
  and PYTHONUTF8 docs when they cover the same thing (mostly
  related to legacy locale detection and setting the standard
  stream error handler)
- improve the description of the locale coercion trigger conditions
  (including pointing out that setting LC_ALL turns off locale coercion)
- port the full description of the UTF-8 mode behaviour changes
  from PEP 540 into the PYTHONUTF8 documentation
- be explicit that PYTHONIOENCODING still overrides the settings
  for the standard streams
- mention concrete examples of things that do and don't get their
  text encoding assumptions adjusted by the two text encoding
  assumption override techniques
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33503: Fix the broken pypi link in the source and the documentation (GH-6814)</title>
<updated>2018-05-15T18:58:35+00:00</updated>
<author>
<name>Stéphane Wirtel</name>
<email>stephane@wirtel.be</email>
</author>
<published>2018-05-15T18:58:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=19177fbd5d6d9b29ccc302d65f9d9417ece082ce'/>
<id>19177fbd5d6d9b29ccc302d65f9d9417ece082ce</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve highlighting of some code blocks. (GH-6401)</title>
<updated>2018-04-08T16:18:04+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-08T16:18:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=46936d5a71d1683dbd8ddb6d7f39aab50ecfec50'/>
<id>46936d5a71d1683dbd8ddb6d7f39aab50ecfec50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-17232: Clarify docs for -O and -OO command line options (#5839)</title>
<updated>2018-02-25T03:04:40+00:00</updated>
<author>
<name>Cheryl Sabella</name>
<email>cheryl.sabella@gmail.com</email>
</author>
<published>2018-02-25T03:04:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=186b606d8a2ea4fd51b7286813302c8e8c7006cc'/>
<id>186b606d8a2ea4fd51b7286813302c8e8c7006cc</id>
<content type='text'>
The 'optimization' is for space in the executable file, not for run time.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The 'optimization' is for space in the executable file, not for run time.</pre>
</div>
</content>
</entry>
</feed>
