Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add CODEOWNERS entry for pathlib (GH-32202) | Brett Cannon | 2022-03-30 | 1 | -0/+3 |
| | |||||
* | bpo-40059: Add tomllib (PEP-680) (GH-31498) | Taneli Hukkinen | 2022-03-08 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a new standard library module, `tomllib`, for parsing TOML. The implementation is based on Tomli (https://github.com/hukkin/tomli). ## Steps taken (converting `tomli` to `tomllib`) - Move everything in `tomli:src/tomli` to `Lib/tomllib`. Exclude `py.typed`. - Remove `__version__ = ...` line from `Lib/tomllib/__init__.py` - Move everything in `tomli:tests` to `Lib/test/test_tomllib`. Exclude the following test data dirs recursively: - `tomli:tests/data/invalid/_external/` - `tomli:tests/data/valid/_external/` - Create `Lib/test/test_tomllib/__main__.py`: ```python import unittest from . import load_tests unittest.main() ``` - Add the following to `Lib/test/test_tomllib/__init__.py`: ```python import os from test.support import load_package_tests def load_tests(*args): return load_package_tests(os.path.dirname(__file__), *args) ``` Also change `import tomli as tomllib` to `import tomllib`. - In `cpython/Lib/tomllib/_parser.py` replace `__fp` with `fp` and `__s` with `s`. Add the `/` to `load` and `loads` function signatures. - Run `make regen-stdlib-module-names` - Create `Doc/library/tomllib.rst` and reference it in `Doc/library/fileformats.rst` | ||||
* | Clean up CODEOWNERS (#31715) | Jelle Zijlstra | 2022-03-07 | 1 | -16/+8 |
| | | | crypto-team apparently doesn't exist and skrah no longer has write access. Thanks @isidentical for noticing this. | ||||
* | "Own" pattern matching and peepholing (GH-31412) | Brandt Bucher | 2022-02-18 | 1 | -0/+2 |
| | |||||
* | Become a CODEOWNER for typing (#31374) | Jelle Zijlstra | 2022-02-16 | 1 | -1/+1 |
| | |||||
* | bpo-46219, 46221: simplify except* implementation following exc_info ↵ | Irit Katriel | 2022-01-02 | 1 | -0/+8 |
| | | | | changes. Move helpers to exceptions.c. Do not assume that exception groups are truthy. (GH-30289) | ||||
* | Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" ↵ | Victor Stinner | 2021-12-07 | 1 | -0/+2 |
| | | | | | (GH-29951) This reverts commit 9bf2cbc4c498812e14f20d86acb61c53928a5a57. | ||||
* | bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521) | Victor Stinner | 2021-11-15 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | Remove the asyncore and asynchat modules, deprecated in Python 3.6: use the asyncio module instead. Remove the smtpd module, deprecated in Python 3.6: the aiosmtpd module can be used instead, it is based on asyncio. * Remove asyncore, asynchat and smtpd documentation * Remove test_asyncore, test_asynchat and test_smtpd * Rename Lib/asynchat.py to Lib/test/support/_asynchat.py * Rename Lib/asyncore.py to Lib/test/support/_asyncore.py * Rename Lib/smtpd.py to Lib/test/support/_smtpd.py * Remove DeprecationWarning from private _asyncore, _asynchat and _smtpd modules * _smtpd: remove deprecated properties | ||||
* | Replace @ilevkivskyi with @Fidget-Spinner as typing code owner (#27210) | Łukasz Langa | 2021-07-17 | 1 | -1/+1 |
| | |||||
* | Removing myself from ssl code ownership (GH-26529) | Christian Heimes | 2021-06-04 | 1 | -3/+3 |
| | | | | | I'm taking a break. Signed-off-by: Christian Heimes <christian@python.org> | ||||
* | try and get a peak at mock-related PRs before they land (#25356) | Chris Withers | 2021-04-12 | 1 | -0/+4 |
| | |||||
* | GH: Add isidentical to the CODEOWNERS (GH-23923) | Batuhan Taskaya | 2020-12-24 | 1 | -0/+7 |
| | |||||
* | Add Mark Shannon to CODEOWNERS. (#22914) | Mark Shannon | 2020-10-23 | 1 | -2/+8 |
| | |||||
* | Add CODEOWNERS for the Grammar file (GH-22898) | Lysandros Nikolaou | 2020-10-22 | 1 | -0/+1 |
| | |||||
* | Add lysnikolaou to CODEOWNERS for the new parser (GH-21252) | Lysandros Nikolaou | 2020-07-01 | 1 | -3/+3 |
| | |||||
* | Update CODEOWNERS to account for the new parser location (GH-20971) | Pablo Galindo | 2020-06-18 | 1 | -3/+3 |
| | |||||
* | Add @pablogsal as code owner for pegen-related files (GH-19665) | Pablo Galindo | 2020-04-22 | 1 | -0/+2 |
| | |||||
* | Add setobject.c (GH-17463) | Raymond Hettinger | 2019-12-04 | 1 | -0/+1 |
| | |||||
* | add @ethanfurman for tarfile (GH-17461) | Ethan Furman | 2019-12-04 | 1 | -0/+1 |
| | |||||
* | Update CODEOWNERS (#17356) | Ethan Furman | 2019-11-22 | 1 | -0/+3 |
| | | | Add Ethan Furman for enum, cgi, and cgitb. | ||||
* | CODEOWNERS: add myself for asyncore/chat, ftplib and shutil modules (#17313) | Giampaolo Rodola | 2019-11-21 | 1 | -0/+6 |
| | |||||
* | Add @pablogsal to code owners file for the garbage collector (GH-17248) | Pablo Galindo | 2019-11-19 | 1 | -0/+4 |
| | | | | | Add myself to the codeowners file as I would like to be automatically added as a reviewer for PRs that touch that component and its documentation. | ||||
* | Updated CODEOWNERS to indicate ownership of some modules. (GH-16578) | Vinay Sajip | 2019-10-04 | 1 | -0/+8 |
| | |||||
* | Adjust code ownership so @gpshead don't get asyncio subprocess PRs. (GH-16100) | Gregory P. Smith | 2019-09-13 | 1 | -1/+3 |
| | |||||
* | Add pganssle to CODEOWNERS and ACKS (GH-14138) | Paul Ganssle | 2019-06-18 | 1 | -0/+9 |
| | | | Also adds abalkin to CODEOWNERS for date and time related files. | ||||
* | Revert adding @maxking to CODEOWNERS file (GH-13660) | Brett Cannon | 2019-05-30 | 1 | -1/+1 |
| | | | This reverts commit 71dc7c5fbd856df83202f39c1f41ccd07c6eceb7. Turns out you must have write access for CODEOWNERS to work. | ||||
* | Add my to code owner for more areas (#13650) | Christian Heimes | 2019-05-29 | 1 | -4/+11 |
| | |||||
* | Add @maxking to CODEOWNERS file (GH-13599) | Abhilash Raj | 2019-05-28 | 1 | -1/+1 |
| | |||||
* | Unroll import-team in CODEOWNERS (#13118) | Brett Cannon | 2019-05-06 | 1 | -2/+2 |
| | |||||
* | Add @pablogsal to code owners file for Parser/pgen (GH-12944) | Pablo Galindo | 2019-04-24 | 1 | -0/+3 |
| | | | | | Add myself to the codeowners file as I would like to be automatically added as a reviewer for PRs that touch that component. | ||||
* | Add myself to CODEOWNERS for sqlite3 and urllib.robotparser (GH-12856) | Berker Peksag | 2019-04-16 | 1 | -0/+6 |
| | |||||
* | github: assign @methane to dict owner (GH-12617) | Inada Naoki | 2019-03-30 | 1 | -0/+1 |
| | |||||
* | Fix typo (double 'the') in CODEOWNERS (GH-12227) | Benedikt Werner | 2019-03-08 | 1 | -1/+1 |
| | |||||
* | Add macos-team as a code owner (GH-10045) | Ned Deily | 2018-10-23 | 1 | -0/+4 |
| | |||||
* | Update codeowners to match experts list change (#10022) | Nick Coghlan | 2018-10-21 | 1 | -1/+1 |
| | |||||
* | Add myself for HTML-related modules (#9325) | Ezio Melotti | 2018-09-15 | 1 | -0/+5 |
| | |||||
* | Add myself as hamt/context (PEP 567) code owner (#5276) | Yury Selivanov | 2018-01-23 | 1 | -0/+2 |
| | |||||
* | Ignore importlib.h for automatic review requests from the import team. (GH-5087) | Brett Cannon | 2018-01-03 | 1 | -2/+7 |
| | | | | Otherwise the import team gets flagged for reviews any time the bytecode for importlib.h changes (e.g new bytecode, optimizations, etc.). | ||||
* | Add @asvetlov to asyncio codeowners (#4917) | Andrew Svetlov | 2017-12-18 | 1 | -1/+1 |
| | |||||
* | Add Guido and Ivan as owners for typing.py (#4729) | Guido van Rossum | 2017-12-05 | 1 | -0/+2 |
| | |||||
* | Add dataclasses to CODEOWNERS. (GH-4730) | Eric V. Smith | 2017-12-05 | 1 | -0/+2 |
| | |||||
* | Add self and idlelib to CODEOWNERS file. (#3889) | Terry Jan Reedy | 2017-10-05 | 1 | -0/+2 |
| | | | Followed format of other entries. | ||||
* | bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711) | Stefan Grönke | 2017-09-25 | 1 | -1/+1 |
| | |||||
* | Add references to modules I am responsible for (#3291) | Raymond Hettinger | 2017-09-04 | 1 | -0/+9 |
| | |||||
* | Use a team to maintain the email related packages. (#3290) | Barry Warsaw | 2017-09-04 | 1 | -5/+5 |
| | |||||
* | Change code owners for hashlib and ssl to the crypto team (#3284) | Alex Gaynor | 2017-09-04 | 1 | -3/+6 |
| | | | | | | * Change code owners for hashlib and ssl to the crypto team * Include the core CSPRNG for the crypto-team | ||||
* | Add Windows team as a codeowner for Windows-specific files (#3089) | Steve Dower | 2017-08-15 | 1 | -0/+8 |
| | |||||
* | add myself to CODEOWNERS for subprocess. (#3005) | Gregory P. Smith | 2017-08-05 | 1 | -0/+3 |
| | |||||
* | Notify the import-team on import-related PRs (GH-3002) | Brett Cannon | 2017-08-04 | 1 | -1/+1 |
| | |||||
* | Add @bitdancer as codeowner of email related stuff. (GH-2987) | R. David Murray | 2017-08-02 | 1 | -0/+7 |
| |