Python Enhancement Proposals
Go to file
Matthew Rahtz f507e8870f
PEP 646: Various updates (#1751)
Naming:
* Rename Tuple
* Rename Tensor -> Array (it's less jargony, and I think it's the more general term)
* Rename Expand -> Unpack (to be consistent with the terminology for normal tuples)
* Rename ArgTs -> Ts, ReturnT -> R
* Rename 'type tuple variable' -> 'type variable tuple'

Semantic:
* Explicitly state that a TypeVarTuple can hold *zero* or more types
* Explicitly state that TypeVarTuple doesn't support variance or bound yet
* Support Union[*Ts]
* Support concatenating multiple unpacked TypeVarTuple when there's no ambiguity
* Support aliases
* Remove support for class overloads; replace with overloads of individual methods

Pedagogical:
* Reorder introductory material to make it clearer how TypeVarTuples behave when not unpacked, and to make it clearer that using them without unpacking them is a perfectly valid thing to do
* Remove example of unpacking being used with a regular Tuple rather than a TypeVarTuple (my main reason for wanting to include it was to emphasise that a TypeVarTuple behaves like a Tuple, but I think this is emphasised better in previous sections now, and since I don't think it has any use cases, it seems better to remove it to keep things shorter and more to the point)
* Replace Tuple[*Ts] with just Ts (now that we've settled on Ts definitely meaning "A Tuple filled with types", writing Tuple[*Ts] is redundant - it's exactly the same as Ts, but with more keystrokes)
* State explicitly that TypeVarTuple can be used with Callable
* Changes args_to_tuples example to args_to_lists (so it's clearer where the Tuple comes from)
* Show more examples of where Map can be used
* Move section on nesting Map to the 'Rationale and Rejected Ideas' section (it's complicated enough to be too distracting if it were in the main section, and since there isn't an obvious use-case, we leave it as an optional feature)
* Add section on a full example of an array type
* Remove ideas for future PEPs (to reduce length)
* Add more detail on the range of type concatenations that are allowable

Other:
* Add Pradeep to the authors list, since he's contributed so much :)
* Add Eric Traut in the acknowledgements
* Update Post-History
* Fix some references
* Fix first Array example to remove the need for a cast
* Various wording tweaks
2021-01-01 17:08:20 -08:00
.github Build and deploy HTML on GitHub Actions (#1669) 2020-10-23 10:32:17 -07:00
pep-0001 PEP 1: Move image to PEP root directory 2018-07-08 17:20:08 +10:00
pep-0418 PEP 418, PEP 499: update the email address of Cameron Simpson (#940) 2019-03-19 16:30:05 -07:00
pep-0426 Tweak name rules for export groups and extensions 2013-08-10 17:16:46 -04:00
pep-0433 PEP 433: add test scripts; performances results on Linux 3.6 2013-01-27 13:35:21 +01:00
pep-0446 Rename pep-0466/ to pep-0446/ 2014-01-06 11:53:05 +01:00
pep-0505 Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0532 PEP 532 revision and restructure (#156) 2016-12-12 00:11:36 +10:00
pep-0605 PEP 605: Change ABI management to encourage pre-built wheels (#1190) 2019-10-06 00:04:21 +10:00
pep0 Change language from BDFL-Delegate to PEP-Delegate (#1672) 2020-10-26 11:48:42 -07:00
.gitignore create package target (#898) 2019-02-23 13:02:57 -05:00
CODE_OF_CONDUCT.md Rename CoC.rst to .md (#819) 2018-10-27 09:40:04 -07:00
CONTRIBUTING.rst Update the PR template and Contributing Guidelines (#738) 2018-07-13 14:22:35 -07:00
Makefile Package all pep files. Fixes python/pythondotorg#1394 (#982) 2019-04-09 11:26:44 -05:00
PyRSS2Gen.py update PyRSS2Gen to 1.1.0, which supports Python 3 2017-02-26 11:14:28 -08:00
README.rst Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
deploy.bash package/deploy: it's working now 2019-02-23 13:43:27 -05:00
docutils.conf removed www.python.org hostname from PEP base URL so mirrors work 2006-03-24 03:06:17 +00:00
genpepindex.py Convert PEP index to ReST (#705) 2018-07-10 23:10:43 +10:00
pep-0001-process_flow.png PEP 1: Move image to PEP root directory 2018-07-08 17:20:08 +10:00
pep-0001.txt Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0002.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0003.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0004.txt PEP 4: xml.etree.cElementTree was reverted 2020-06-17 13:56:20 +02:00
pep-0005.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0006.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0007.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0008.txt PEP 8: Add one line docstring example (#1670) 2020-10-21 19:20:02 -07:00
pep-0009.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0010.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0011.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0012.rst Change language from BDFL-Delegate to PEP-Delegate (#1672) 2020-10-26 11:48:42 -07:00
pep-0013.rst Update pep-0013.rst (#1365) 2020-04-14 08:54:33 -07:00
pep-0020.txt Add the original Zen (Way) of Python link (#1313) 2020-02-20 15:50:16 -08:00
pep-0042.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0100.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0101.txt PEP-101: Improve description of Windows build steps for release (#1710) 2020-11-10 00:14:14 +00:00
pep-0102.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0103.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0160.txt PEPs 160, 205: Update email address for fdrake (#847) 2018-12-01 02:53:45 +11:00
pep-0200.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0201.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0202.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0203.txt Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
pep-0204.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0205.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0206.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0207.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0208.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0209.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0210.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0211.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0212.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0213.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0214.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0215.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0216.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0217.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0218.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0219.txt PEP 219: Fix grammatical mistakes (#900) 2019-02-25 10:59:14 +11:00
pep-0220.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0221.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0222.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0223.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0224.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0225.txt Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
pep-0226.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0227.txt PEP 227: remove placeholder comments. (#561) 2018-01-28 23:23:47 -08:00
pep-0228.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0229.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0230.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0231.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0232.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0233.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0234.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0235.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0236.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0237.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0238.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0239.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0240.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0241.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0242.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0243.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0244.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0245.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0246.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0247.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0248.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0249.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0250.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0251.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0252.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0253.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0254.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0255.txt Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
pep-0256.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0257.txt Remove "XXX Mention docstrings of 2.2 properties." (#486) 2017-11-30 10:48:08 -08:00
pep-0258.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0259.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0260.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0261.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0262.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0263.txt PEP 263: fix typo in coding regex (#672) 2018-06-15 12:31:53 -07:00
pep-0264.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0265.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0266.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0267.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0268.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0269.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0270.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0271.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0272.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0273.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0274.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0275.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0276.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0277.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0278.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0279.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0280.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0281.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0282.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0283.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0284.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0285.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0286.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0287.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0288.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0289.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0290.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0291.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0292.txt Linkify the PEP numbers in "Superseded-By" header. (#726) 2018-07-10 11:04:15 -07:00
pep-0293.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0294.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0295.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0296.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0297.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0298.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0299.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0301.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0302.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0303.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0304.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0305.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0306.txt PEP 306: Updtae the urls to devguide and bpo (#745) 2018-07-21 16:07:02 -07:00
pep-0307.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0308.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0309.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0310.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0311.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0312.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0313.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0314.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0315.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0316.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0317.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0318.txt PEP 318: Fix the url to Python Decorators Wiki (#1427) 2020-06-11 19:18:51 -07:00
pep-0319.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0320.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0321.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0322.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0323.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0324.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0325.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0326.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0327.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0328.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0329.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0330.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0331.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0332.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0333.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0334.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0335.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0336.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0337.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0338.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0339.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0340.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0341.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0342.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0343.txt PEP 343: Clean up some __context__ context (#1631) 2020-10-12 16:11:32 -07:00
pep-0344.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0345.txt PEP 345 - Disallow environment markers in Requires-Python (GH-1611) 2020-09-21 22:09:10 +01:00
pep-0346.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0347.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0348.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0349.txt Reject PEP 349: Outdated by Python 3 (#1391) 2020-05-04 09:57:07 -07:00
pep-0350.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0351.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0352.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0353.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0354.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0355.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0356.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0357.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0358.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0359.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0360.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0361.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0362.txt Update Yury S. & Elvis P. emails (#1165) 2019-09-12 12:36:34 +01:00
pep-0363.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0364.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0365.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0366.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-0367.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0368.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0369.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0370.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0371.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0372.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0373.txt PEP 373: Add 2.7.18 announcement link for reference. 2020-04-20 22:54:29 -05:00
pep-0374.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0375.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0376.txt clarify status of implmentation notes in PEP 376 (#1307) 2020-02-24 13:23:09 +00:00
pep-0377.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0378.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0379.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0380.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0381.txt Fixed typos (#1144) 2019-08-11 08:53:20 -07:00
pep-0382.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0383.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0384.txt PEP 384: Update PyType_Spec struct per bpo-15140 (#1354) 2020-04-01 13:35:58 -07:00
pep-0385.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0386.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0387.txt Mark PEP 387 as Active 2020-07-20 11:47:55 -07:00
pep-0389.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0390.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0391.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0392.txt Note that the final release was 3.2.6. 2018-01-09 00:38:30 -05:00
pep-0393.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0394.txt PEP 394: Allow for more flexibility in handling /usr/bin/python (GH-989) 2019-07-05 12:06:34 -07:00
pep-0395.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0396.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0397.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0398.txt Note 3.3 end-of-life. 2018-01-09 00:22:26 -05:00
pep-0399.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0400.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0401.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0402.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0403.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0404.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0405.txt Removed dead links to Google Code Search (#1272) 2020-01-10 18:03:32 +11:00
pep-0406.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0407.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0408.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0409.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0410.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0411.txt PEP 411: this is Active, not Accepted 2018-06-04 23:28:55 +10:00
pep-0412.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0413.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0414.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0415.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0416.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0417.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0418.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0419.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0420.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0421.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0422.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0423.txt PEP 423: Update link to glossary (#1738) 2020-12-16 11:59:31 -08:00
pep-0424.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0425.txt Fix misspelled name (#1146) 2019-08-20 13:09:39 -07:00
pep-0426.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0427.txt Mark several PEPs as final (#578) 2018-02-21 10:36:21 +10:00
pep-0428.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0429.txt PEP 429: Python 3.4 is EOL, PEP status is final (#1374) 2020-04-21 14:04:50 -07:00
pep-0430.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0431.txt PEP 431: Superseded by PEP 615 (#1404) 2020-05-18 14:33:07 +02:00
pep-0432.txt PEP 432: Withdraw to make way for future subproposals (#1476) 2020-08-16 10:20:05 +10:00
pep-0433.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0434.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0435.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0436.txt Mark the "Argument Clinic" PEP as Final. 2019-03-11 18:17:09 -07:00
pep-0437.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0438.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0439.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0440.txt PEP 440: update clause range for SemVer 2.0.0 (#1393) 2020-10-25 14:16:20 +10:00
pep-0441.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0442.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0443.txt lukasz@langa.pl -> lukasz@python.org 2018-01-27 13:19:45 -08:00
pep-0444.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0445.txt PEP 445, PEP 467, PEP 548, PEP 621: Fix incorrect backticks (#1560) 2020-08-12 08:05:43 -07:00
pep-0446.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0447.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0448.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0449.txt Update 469, 464, 470 to Final (#607) 2018-04-11 11:16:39 -07:00
pep-0450.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0451.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0452.txt Mark PEP 452 as final (#957) 2019-03-28 13:56:53 -07:00
pep-0453.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0454.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0455.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0456.txt PEP-456: fix typo (#1258) 2019-12-19 00:58:18 +11:00
pep-0457.txt PEP 457: Mark as Final -- there's nothing left to do here now PEP 570 is accepted (#1223) 2019-11-08 13:56:29 -08:00
pep-0458-1.png PEP 458: fix technical choices and remove ambiguity (#1203) 2019-12-02 13:42:40 -08:00
pep-0458.txt new name <3 (#1733) 2020-12-14 11:47:28 -08:00
pep-0459.txt Withdraw PEPs 426 and 459 (#579) 2018-02-21 21:21:31 +10:00
pep-0460.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0461.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0462.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0463.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0464.txt Update 469, 464, 470 to Final (#607) 2018-04-11 11:16:39 -07:00
pep-0465.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0466.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0467.txt PEP 445, PEP 467, PEP 548, PEP 621: Fix incorrect backticks (#1560) 2020-08-12 08:05:43 -07:00
pep-0468.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0469.txt Update pep-0469 (#895) 2019-02-14 20:16:30 -08:00
pep-0470.txt Update 469, 464, 470 to Final (#607) 2018-04-11 11:16:39 -07:00
pep-0471.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0472.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0473.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0474.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0475.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0476.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0477.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0478.txt Retired Python 3.5 release schedule. 2020-10-01 11:43:36 -07:00
pep-0479.txt Fix a typo (#1162) 2019-09-11 19:52:27 +10:00
pep-0480-1.png Move PEP 480 figure out of subdir -- that does not work on python.org. 2014-11-25 15:04:35 -08:00
pep-0480.txt PEP 480: Update PEP 480 to account for changes to PEP 458 (#1681) 2020-10-25 14:10:53 +10:00
pep-0481.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0482.txt PEP 482: Fix other occurrences of 'parametriz' 2020-02-24 20:20:33 -08:00
pep-0483.txt Remove reference to implicitly Optional parameters (#1345) 2020-03-29 09:07:30 +11:00
pep-0484.txt PEP 484: Clarify that 'import ... as ...' means 'X as X' (#1630) 2020-09-30 19:46:20 -07:00
pep-0485.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0486.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0487.txt typo fix (#1348) 2020-03-30 06:11:00 +11:00
pep-0488.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0489.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0490.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0491.txt PEP 491: Mark as Deferred (#927) 2019-03-16 13:40:55 +10:00
pep-0492.txt Update Yury S. & Elvis P. emails (#1165) 2019-09-12 12:36:34 +01:00
pep-0493.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0494.txt 3.7.9 and 3.6.12 released 2020-08-17 18:38:09 -04:00
pep-0495-daylightsavings.png Added PEP495, Local Time Disambiguation 2015-08-02 16:58:27 -04:00
pep-0495-fold-2.png PEP 495: Attempt to fix the fold sketch by renaming the image file. 2015-09-20 20:57:14 -04:00
pep-0495-fold.svg PEP 495: Added a vertical segment to the graph. 2015-08-30 22:49:58 -04:00
pep-0495-gap.png PEP 495: Added a gap sketch. 2015-09-20 20:25:12 -04:00
pep-0495-gap.svg PEP 495: Added a gap sketch. 2015-09-20 20:25:12 -04:00
pep-0495.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0496.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0497.txt Reject PEP 497 2019-11-06 16:44:51 -08:00
pep-0498.txt PEP 498: Clarify the prohibition on locals() and globals(). (GH-529) 2018-01-03 16:35:52 -08:00
pep-0499.txt PEP 499: Mark as deferred until 3.10 (#1328) 2020-03-14 14:36:57 +10:00
pep-0500.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0501.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0502.txt Reject PEP 502 (#953) 2019-03-27 15:24:28 -07:00
pep-0503.txt Clarify that the CDATA for a repo index should match the project name, not the normalized name (#1324) 2020-03-03 10:19:37 -08:00
pep-0504.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0505.rst Update pep-0505.rst (#1370) 2020-04-15 20:22:00 -07:00
pep-0506.txt Mark several PEPs as final (#578) 2018-02-21 10:36:21 +10:00
pep-0507.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0508.txt Add missing parentheses (#1486) 2020-07-01 10:58:32 +10:00
pep-0509.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0510.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0511.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0512.txt Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
pep-0513.txt PEP 513 & 571: Remove libcrypt.so.1 from whitelist (#1124) 2019-07-18 15:29:30 -07:00
pep-0514.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0515.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0516.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0517.txt PEP-517: On Windows the subprocess calls don't start resolving from the PATH (#1730) 2020-12-14 12:13:50 -08:00
pep-0518.txt Mark PEP 518 as Final (#1358) 2020-04-06 08:24:22 +10:00
pep-0519.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0520.txt Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0521.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0522.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0523.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0524.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0525-1.png Add PEP 525: Asynchronous Generators 2016-08-02 17:23:38 -04:00
pep-0525.txt Update Yury S. & Elvis P. emails (#1165) 2019-09-12 12:36:34 +01:00
pep-0526.txt PEP 526: Add another example of tuple packing (#1096) 2019-06-03 00:39:19 +01:00
pep-0527.txt PEP 527: Update status to Final (#1382) 2020-06-17 10:54:30 +02:00
pep-0528.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0529.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0530.txt Update Yury S. & Elvis P. emails (#1165) 2019-09-12 12:36:34 +01:00
pep-0531.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0532.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0533.txt fix PEP 533 typo (#1593) 2020-09-09 05:25:09 +10:00
pep-0534.txt PEP 534: Mark as Deferred (GH-1327) 2020-03-11 11:49:57 +01:00
pep-0535.txt Defer None-aware operator related PEPs 2017-11-29 19:46:18 +10:00
pep-0536.txt Defer PEP 536 (#934) 2019-03-15 15:32:43 -07:00
pep-0537.txt 3.7.9 and 3.6.12 released 2020-08-17 18:38:09 -04:00
pep-0538.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0539.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0540.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0541.txt PEP 541: Add section on how to request a name transfer (#1059) 2019-10-26 15:25:05 +02:00
pep-0542.txt Reject PEP 542 (#935) 2019-03-15 15:56:22 -07:00
pep-0543.rst Withdraw PEP 543 and PEP 595 (#1467) 2020-06-25 10:24:10 -07:00
pep-0544.txt fix that/than typo (#1609) 2020-09-21 09:56:26 -07:00
pep-0545.txt Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0546.txt Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0547.rst Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
pep-0548.rst PEP 445, PEP 467, PEP 548, PEP 621: Fix incorrect backticks (#1560) 2020-08-12 08:05:43 -07:00
pep-0549.rst Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0550-hamt_vs_dict-v2.png PEP-0550 V4 (#375) 2017-08-25 18:21:39 -04:00
pep-0550-hamt_vs_dict.png PEP 550 v3 (#355) 2017-08-18 16:23:50 -04:00
pep-0550-lookup_hamt.png pep550: Move pics one level up to show up on Python.org (#332) 2017-08-11 19:29:03 -04:00
pep-0550.rst docs: fix simple typo, survery -> survey (#1749) 2020-12-27 18:03:48 -08:00
pep-0551.rst PEP 551: Withdrawn (#1299) 2020-06-24 18:15:46 +01:00
pep-0552.rst Fix a small grammar problem. 2019-05-31 10:06:10 -07:00
pep-0553.rst PEP 622: Fix Typos (#1457) 2020-06-24 17:25:13 -07:00
pep-0554.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0555.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0556.rst Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0557.rst Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0558.rst PEP 558: Postpone to 3.10 (#1364) 2020-06-30 22:21:31 +10:00
pep-0559.rst PEP 559: Fix typo in my name 2017-09-11 13:04:07 +10:00
pep-0560.rst PEP 560: Fix a typo (#1423) 2020-06-06 04:16:21 +10:00
pep-0561.rst Remove trailing spaces from many PEPs (#983) 2019-04-16 07:50:15 -07:00
pep-0562.rst fix typo in PEP 562 (#688) 2018-07-07 15:44:02 -07:00
pep-0563.rst Make `from __future__ import annotations` the default in Python 3.10 (#1406) 2020-05-19 18:19:55 +02:00
pep-0564.rst Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0565.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0566.rst PEP 599: manylinux2014 PEP (#1121) 2019-07-20 21:35:07 +10:00
pep-0567.rst PEP 567: typo in pseudocode of ContextVar.reset (#1262) 2019-12-23 11:19:34 -08:00
pep-0568.rst Fix typos. 2018-01-16 14:39:53 -08:00
pep-0569.rst [pep-0569] Actual date for 3.8.7 2020-12-21 19:17:23 +01:00
pep-0570.rst Update Pablo Galindo's email (#1422) 2020-06-04 10:37:58 +01:00
pep-0571.rst Toolchain change in the manylinux2010 i686 image (#1398) 2020-09-22 09:46:28 -07:00
pep-0572.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0573.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0574.rst Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0575.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0576.rst Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0577.rst Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0578.rst Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-0579.rst PEP 579: Accept (with a reminder on informational PEPs) (#1233) 2019-11-19 10:12:42 -08:00
pep-0580.rst Reject PEP 580 in favor of PEP 590 (GH-1027) 2019-05-07 09:54:15 -04:00
pep-0581.rst PEP 581/588: Discussions to: core-workflow on Discourse (#1395) 2020-05-06 11:21:34 -07:00
pep-0582.rst PEP 582: Minor formatting fix. (#1128) 2019-07-26 19:06:27 +10:00
pep-0583.rst Rename pep-0583.txt to .rst (#902) 2019-03-01 11:39:16 -08:00
pep-0584.rst PEP 584: Fix order in specification examples (#1643) 2020-10-09 10:05:24 -07:00
pep-0585.rst [pep-0585] Acknowledge Guido for implementing the PEP 2020-04-19 12:39:56 +02:00
pep-0586.rst Fix 'Created' date for PEP 586 (#1149) 2019-08-21 23:40:11 +01:00
pep-0587.rst Change Victor Stinner email 2019-10-18 02:48:46 +02:00
pep-0588.rst new name <3 (#1733) 2020-12-14 11:47:28 -08:00
pep-0589.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0590.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0591.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0592.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0593.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0594.rst PEP 594: add hyperlinks to the table of replacements (GH-1674) 2020-10-22 16:17:50 -07:00
pep-0595.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0596.rst [pep-0596] Actual dates for 3.9.1rc1 and 3.9.1 2020-12-21 19:16:50 +01:00
pep-0597.rst PEP 597: Minor fix (#1589) 2020-09-08 12:42:48 +09:00
pep-0598.rst PEP 605: A rolling feature release stream for CPython (#1184) 2019-10-01 23:03:33 +10:00
pep-0599.rst PEP 599: Update status to Final (GH-1381) 2020-04-23 20:44:21 +01:00
pep-0600.rst Accept PEP 600 (#1248) 2019-12-04 23:24:33 +00:00
pep-0601.txt PEP 601: Add my email (#1734) 2020-12-15 00:48:31 +03:00
pep-0602-example-release-calendar.png [pep-602] [pep-569] Adjust beta phase 2019-11-06 13:48:51 +01:00
pep-0602-example-release-calendar.pptx [pep-602] [pep-569] Adjust beta phase 2019-11-06 13:48:51 +01:00
pep-0602-overlapping-support-matrix.png [pep-602] Increase full bugfix support to 18 months based on feedback 2019-09-13 18:41:32 +02:00
pep-0602-overlapping-support-matrix.pptx [pep-602] Increase full bugfix support to 18 months based on feedback 2019-09-13 18:41:32 +02:00
pep-0602.rst Accept PEP 602 2019-11-06 16:20:49 -08:00
pep-0603-hamt_vs_dict.png Add PEP-0603 -- Adding frozenmap (#1164) 2019-09-12 12:23:44 +01:00
pep-0603-lookup_hamt.png PEP 603: Fix figure 2 (#1621) 2020-09-26 13:35:14 -07:00
pep-0603.rst PEP 603: Fix figure 2 (#1621) 2020-09-26 13:35:14 -07:00
pep-0604.rst PEP 604: Fix minor typo (#1594) 2020-09-08 16:00:45 -07:00
pep-0605-example-release-calendar.png PEP 605: Change ABI management to encourage pre-built wheels (#1190) 2019-10-06 00:04:21 +10:00
pep-0605-overlapping-support-matrix.png PEP 605: Change ABI management to encourage pre-built wheels (#1190) 2019-10-06 00:04:21 +10:00
pep-0605.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0606.rst PEP 606: Fix incorrect backticks (#1559) 2020-08-12 07:06:55 -07:00
pep-0607.rst Mark PEP 607 as final 2019-11-06 16:21:23 -08:00
pep-0608.rst Reject PEPs 606 and 608 as per SC decision (#1246) 2019-12-03 16:04:38 -08:00
pep-0609.rst Clarify conditions for a successful vote (#1629) 2020-09-30 22:58:05 +02:00
pep-0610.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0611.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0612.rst PEP 612: Clean up code examples, link to CPython implementation (#1745) 2020-12-23 20:20:36 -08:00
pep-0613.rst Fix RST backticks (#1554) 2020-08-07 09:35:20 -07:00
pep-0614.rst PEP 622: Fix Typos (#1457) 2020-06-24 17:25:13 -07:00
pep-0615.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0616.rst PEP 616: How to teach this (#1377) 2020-04-21 14:04:17 -07:00
pep-0617.rst PEP 617: Fix typo (#1496) 2020-07-05 11:56:20 +10:00
pep-0618.rst Accepted -> Final (#1458) 2020-06-23 17:11:54 -07:00
pep-0619.rst PEP 619: Update date for 3.10.0a3 2020-12-08 01:41:58 +00:00
pep-0620.rst PEP 620: Fix typos (#1556) 2020-08-07 23:55:44 +02:00
pep-0621.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0622.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0623.rst fix typo: extensiom -> extension (#1638) 2020-10-06 07:23:15 +11:00
pep-0624.rst PEP 624: Minor updates (#1666) 2020-10-20 17:42:54 +09:00
pep-0625.rst PEP 625: Typo fixes (GH-1506) 2020-07-15 12:08:23 +01:00
pep-0626.rst PEP 626: Allow zero-width entries in code.co_lines(), to allow better bytecode generation. (#1743) 2020-12-22 13:54:47 +00:00
pep-0627.rst PEP 627: Mark as Accepted (GH-1580) 2020-09-03 17:07:30 +01:00
pep-0628.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-0629.rst Make Brett Cannon the PEP delegate for PEP 629 (#1534) 2020-07-20 12:50:28 -07:00
pep-0630.rst PEP 630: change to Active and link to the new xxlimited module (GH-1736) 2020-12-15 15:58:23 +01:00
pep-0631.rst PEP 621 & 631: pull in details from PEP 631 into PEP 621 (#1647) 2020-10-10 12:28:09 -07:00
pep-0632.rst PEP 632: Allow fixes during deprecation period and add migration and rejected ideas. (#1600) 2020-09-17 23:19:06 +01:00
pep-0633.rst PEP 633: mark as rejected (GH-1637) 2020-10-05 07:59:54 +01:00
pep-0634.rst PEP 634, 635, 636: Update Post-History 2020-10-31 13:43:32 -07:00
pep-0635.rst fix typos in PEP 635 (#1746) 2020-12-24 06:17:26 -08:00
pep-0636.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0637.rst PEP 637: Addnew slots to the C interface (#1750) 2020-12-28 09:38:34 -08:00
pep-0638.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-0639.rst PEP 639: Minor typo fixes (#1656) 2020-10-16 12:39:49 -07:00
pep-0640.rst PEP 640: Update post history and fix a bit of markup. (#1664) 2020-10-20 12:58:01 +02:00
pep-0641.rst Reject PEP 641 (#1729) 2020-12-10 19:51:17 -08:00
pep-0642.rst PEP 642: Additional edits for 2nd posting (#1709) 2020-11-08 15:52:50 +10:00
pep-0643.rst PEP 643: Mark as accepted (#1724) 2020-12-01 10:19:48 -05:00
pep-0644.rst PEP-644: Require OpenSSL 1.1 or newer (#1692) 2020-10-27 19:57:45 +01:00
pep-0645.rst PEP 645: New syntax for optional types (#1707) 2020-11-09 12:42:58 -08:00
pep-0646.rst PEP 646: Various updates (#1751) 2021-01-01 17:08:20 -08:00
pep-0647.rst PEP 647: Fix nits found by David Foster 2021-01-01 16:41:42 -08:00
pep-0648.rst PEP 648: Fix date format 2020-12-30 21:40:47 +00:00
pep-0666.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0754.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-0801.rst Reserve two PEPs (#683) 2018-06-21 10:09:54 -07:00
pep-3000.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3001.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3002.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3003.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3099.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3100.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-3101.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3102.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3103.txt Fixed typos (#1144) 2019-08-11 08:53:20 -07:00
pep-3104.txt explain that nonlocal and global assignment shorthands are not going to be implemented 2018-01-06 12:58:02 -08:00
pep-3105.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3106.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3107.txt "func_annotations" -> " __annotations__" (#628) 2018-05-16 12:16:39 -04:00
pep-3108.txt Fixed small grammar typo, removed "has" (#1222) 2019-11-06 11:05:22 -08:00
pep-3109.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3110.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3111.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3112.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3113.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3114.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3115.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3116.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3117.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3118.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-3119.txt PEP 3119: Fix typo int the word: coarse-grained (#914) 2019-03-06 17:25:00 -08:00
pep-3120.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3121.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3122.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3123.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3124.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3125.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3126.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-3127.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3128.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3129.txt Replace links to sourceforge with links to bpo (#746) 2018-07-21 16:57:17 -07:00
pep-3130.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3131.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-3132.txt Fix example description (#1293) 2020-02-03 20:50:41 +11:00
pep-3133.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3134.txt PEP 3134: Fix indentation in example. (#1699) 2020-10-31 06:41:02 -07:00
pep-3135.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3136.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3137.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-3138.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-3139.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3140.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3141.txt Fix pep-3141.txt: broken numerical tower link (#798) 2018-10-04 08:32:53 -07:00
pep-3142.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3143.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3144.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3145.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3146.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3147-1.dia Updated PEP 3147 with latest BDFL pronouncement. 2010-03-03 14:11:24 +00:00
pep-3147-1.png Updated PEP 3147 with latest BDFL pronouncement. 2010-03-03 14:11:24 +00:00
pep-3147.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3148.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3149.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3150.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-3151.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-3152.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3153.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3154.txt PEP 3154: fix typo (#1338) 2020-03-22 21:51:49 -07:00
pep-3155.txt Revert "Rename all .txt PEP files to .rst (GH-462)" (GH-464) 2017-11-11 11:28:55 -08:00
pep-3156.txt Fix typos in various PEPs (#1111) 2019-06-24 21:58:50 -07:00
pep-3333.txt Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-8000.rst Update description for PEP 8010 2018-11-05 11:16:21 -08:00
pep-8001.rst new name <3 (#1733) 2020-12-14 11:47:28 -08:00
pep-8002.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-8010.rst Accept PEP 8016 and reject other governance proposals 2018-12-17 17:09:10 +01:00
pep-8011.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-8012.rst Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-8013.rst PEP 622: Fix Typos (#1457) 2020-06-24 17:25:13 -07:00
pep-8014.rst Fix typos (#1113) 2019-07-03 11:20:45 -07:00
pep-8015.rst Typos: Remove repeated words (#1726) 2020-12-04 09:51:44 -08:00
pep-8016.rst PEP 13: make it real (#857) 2018-12-26 22:40:25 -08:00
pep-8100.rst new name <3 (#1733) 2020-12-14 11:47:28 -08:00
pep-8101.rst new name <3 (#1733) 2020-12-14 11:47:28 -08:00
pep-8102.rst PEP 8102: Publish results (#1739) 2020-12-16 08:13:46 -05:00
pep.css updated my email addy 2007-06-22 15:32:33 +00:00
pep2html.py Change language from BDFL-Delegate to PEP-Delegate (#1672) 2020-10-26 11:48:42 -07:00
pep2rss.py pep2rss.py: Use HTTPS for RSS links (#1680) 2020-10-23 08:38:15 -07:00
pyramid-pep-template fixed references to PEP template; restored warning comment to HTML output 2006-03-23 14:28:55 +00:00
roman.py Make roman.py Python3 compatible. 2016-05-03 10:49:19 +03:00
scan-ops.py New version of pep 465 (matrix multiply @ operator). Added scan-ops.py. 2014-03-18 11:07:32 -07:00
style.css

README.rst

Python Enhancement Proposals
============================

.. image:: https://travis-ci.org/python/peps.svg?branch=master
    :target: https://travis-ci.org/python/peps

The PEPs in this repo are published automatically on the web at
http://www.python.org/dev/peps/.  To learn more about the purpose of
PEPs and how to go about writing a PEP, please start reading at PEP 1
(``pep-0001.txt`` in this repo).  Note that PEP 0, the index PEP, is
now automatically generated, and not committed to the repo.


Contributing to PEPs
====================

See the `Contributing Guidelines <./CONTRIBUTING.rst>`_.


reStructuredText for PEPs
=========================

Original PEP source should be written in reStructuredText format,
which is a constrained version of plaintext, and is described in
PEP 12.  Older PEPs were often written in a more mildly restricted
plaintext format, as described in PEP 9.  The ``pep2html.py``
processing and installation script knows how to produce the HTML
for either PEP format.

For processing reStructuredText format PEPs, you need the docutils
package, which is available from `PyPI <http://pypi.python.org>`_.
If you have pip, ``pip install docutils`` should install it.


Generating the PEP Index
========================

PEP 0 is automatically generated based on the metadata headers in other
PEPs. The script handling this is ``genpepindex.py``, with supporting
libraries in the ``pep0`` directory.


Checking PEP formatting and rendering
=====================================

Do not commit changes with bad formatting.  To check the formatting of
a PEP, use the Makefile.  In particular, to generate HTML for PEP 999,
your source code should be in ``pep-0999.rst`` and the HTML will be
generated to ``pep-0999.html`` by the command ``make pep-0999.html``.
The default Make target generates HTML for all PEPs.

If you don't have Make, use the ``pep2html.py`` script directly.


Generating HTML for python.org
==============================

python.org includes its own helper modules to render PEPs as HTML, with
suitable links back to the source pages in the version control repository.

These can be found at https://github.com/python/pythondotorg/tree/master/peps

When making changes to the PEP management process that may impact python.org's
rendering pipeline:

* Clone the python.org repository from https://github.com/python/pythondotorg/
* Get set up for local python.org development as per
  https://pythondotorg.readthedocs.io/install.html#manual-setup
* Adjust ``PEP_REPO_PATH`` in ``pydotorg/settings/local.py`` to refer to your
  local clone of the PEP repository
* Run ``./manage.py generate_pep_pages`` as described in
  https://pythondotorg.readthedocs.io/pep_generation.html