<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Lib/tokenize.py, branch alex-patch-1</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-5028: Fix up rest of documentation for tokenize documenting line (GH-13686)</title>
<updated>2019-05-30T22:06:32+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2019-05-30T22:06:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2a58b0636d1f620f8a85a2e4c030cc10551936a5'/>
<id>2a58b0636d1f620f8a85a2e4c030cc10551936a5</id>
<content type='text'>
https://bugs.python.org/issue5028</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://bugs.python.org/issue5028</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-5028: fix doc bug for tokenize (GH-11683)</title>
<updated>2019-05-30T19:31:51+00:00</updated>
<author>
<name>Andrew Carr</name>
<email>andrewnc@users.noreply.github.com</email>
</author>
<published>2019-05-30T19:31:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=1e36f75d634383eb243aa1798c0f2405c9ceb5d4'/>
<id>1e36f75d634383eb243aa1798c0f2405c9ceb5d4</id>
<content type='text'>
https://bugs.python.org/issue5028</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://bugs.python.org/issue5028</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-36766: Typos in docs and code comments (GH-13116)</title>
<updated>2019-05-06T18:57:17+00:00</updated>
<author>
<name>penguindustin</name>
<email>penguindustin@gmail.com</email>
</author>
<published>2019-05-06T18:57:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=964663089547ca110199e23867b46b07ff4be88c'/>
<id>964663089547ca110199e23867b46b07ff4be88c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30455: Generate all token related code and docs from Grammar/Tokens. (GH-10370)</title>
<updated>2018-12-22T09:18:40+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-12-22T09:18:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8ac658114dec4964479baecfbc439fceb40eaa79'/>
<id>8ac658114dec4964479baecfbc439fceb40eaa79</id>
<content type='text'>
"Include/token.h", "Lib/token.py" (containing now some data moved from
"Lib/tokenize.py") and new files "Parser/token.c" (containing the code
moved from "Parser/tokenizer.c") and "Doc/library/token-list.inc" (included
in "Doc/library/token.rst") are now generated from "Grammar/Tokens" by
"Tools/scripts/generate_token.py". The script overwrites files only if
needed and can be used on the read-only sources tree.

"Lib/symbol.py" is now generated by "Tools/scripts/generate_symbol_py.py"
instead of been executable itself.

Added new make targets "regen-token" and "regen-symbol" which are now
dependencies of "regen-all".

The documentation contains now strings for operators and punctuation tokens.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"Include/token.h", "Lib/token.py" (containing now some data moved from
"Lib/tokenize.py") and new files "Parser/token.c" (containing the code
moved from "Parser/tokenizer.c") and "Doc/library/token-list.inc" (included
in "Doc/library/token.rst") are now generated from "Grammar/Tokens" by
"Tools/scripts/generate_token.py". The script overwrites files only if
needed and can be used on the read-only sources tree.

"Lib/symbol.py" is now generated by "Tools/scripts/generate_symbol_py.py"
instead of been executable itself.

Added new make targets "regen-token" and "regen-symbol" which are now
dependencies of "regen-all".

The documentation contains now strings for operators and punctuation tokens.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33899: Make tokenize module mirror end-of-file is end-of-line behavior (GH-7891)</title>
<updated>2018-07-06T07:19:08+00:00</updated>
<author>
<name>Ammar Askar</name>
<email>ammar_askar@hotmail.com</email>
</author>
<published>2018-07-06T07:19:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c4ef4896eac86a6759901c8546e26de4695a1389'/>
<id>c4ef4896eac86a6759901c8546e26de4695a1389</id>
<content type='text'>
Most of the change involves fixing up the test suite, which previously made
the assumption that there wouldn't be a new line if the input didn't end in
one.

Contributed by Ammar Askar.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Most of the change involves fixing up the test suite, which previously made
the assumption that there wouldn't be a new line if the input didn't end in
one.

Contributed by Ammar Askar.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-12486: Document tokenize.generate_tokens() as public API (#6957)</title>
<updated>2018-06-05T17:26:39+00:00</updated>
<author>
<name>Thomas Kluyver</name>
<email>takowl@gmail.com</email>
</author>
<published>2018-06-05T17:26:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c56b17bd8c7a3fd03859822246633d2c9586f8bd'/>
<id>c56b17bd8c7a3fd03859822246633d2c9586f8bd</id>
<content type='text'>
* Document tokenize.generate_tokens()

* Add news file

* Add test for generate_tokens

* Document behaviour around ENCODING token

* Add generate_tokens to __all__
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Document tokenize.generate_tokens()

* Add news file

* Add test for generate_tokens

* Document behaviour around ENCODING token

* Add generate_tokens to __all__
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33338: [tokenize] Minor code cleanup (#6573)</title>
<updated>2018-04-23T08:07:11+00:00</updated>
<author>
<name>Łukasz Langa</name>
<email>lukasz@langa.pl</email>
</author>
<published>2018-04-23T08:07:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=c2d384dbd7c6ed9bdfaac45f05b463263c743ee7'/>
<id>c2d384dbd7c6ed9bdfaac45f05b463263c743ee7</id>
<content type='text'>
This change contains minor things that make diffing between Lib/tokenize.py and
Lib/lib2to3/pgen2/tokenize.py cleaner.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change contains minor things that make diffing between Lib/tokenize.py and
Lib/lib2to3/pgen2/tokenize.py cleaner.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-33260: Regenerate token.py after removing ASYNC and AWAIT. (GH-6447)</title>
<updated>2018-04-11T16:15:51+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2018-04-11T16:15:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=d08972fdb92cad6b813d22205752c97ea18df060'/>
<id>d08972fdb92cad6b813d22205752c97ea18df060</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-30406: Make async and await proper keywords (#1669)</title>
<updated>2017-10-06T03:24:46+00:00</updated>
<author>
<name>Jelle Zijlstra</name>
<email>jelle.zijlstra@gmail.com</email>
</author>
<published>2017-10-06T03:24:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ac317700ce7439e38a8b420218d9a5035bba92ed'/>
<id>ac317700ce7439e38a8b420218d9a5035bba92ed</id>
<content type='text'>
Per PEP 492, 'async' and 'await' should become proper keywords in 3.7.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Per PEP 492, 'async' and 'await' should become proper keywords in 3.7.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-25324: copy tok_name before changing it (#1608)</title>
<updated>2017-05-31T14:00:21+00:00</updated>
<author>
<name>Albert-Jan Nijburg</name>
<email>albertjan@trinket.io</email>
</author>
<published>2017-05-31T14:00:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fc354f07855a9197e71f851ad930cbf5652f9160'/>
<id>fc354f07855a9197e71f851ad930cbf5652f9160</id>
<content type='text'>
* add test to check if were modifying token

* copy list so import tokenize doesnt have side effects on token

* shorten line

* add tokenize tokens to token.h to get them to show up in token

* move ERRORTOKEN back to its previous location, and fix nitpick

* copy comments from token.h automatically

* fix whitespace and make more pythonic

* change to fix comments from @haypo

* update token.rst and Misc/NEWS

* change wording

* some more wording changes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* add test to check if were modifying token

* copy list so import tokenize doesnt have side effects on token

* shorten line

* add tokenize tokens to token.h to get them to show up in token

* move ERRORTOKEN back to its previous location, and fix nitpick

* copy comments from token.h automatically

* fix whitespace and make more pythonic

* change to fix comments from @haypo

* update token.rst and Misc/NEWS

* change wording

* some more wording changes
</pre>
</div>
</content>
</entry>
</feed>
