{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":134421829,"defaultBranch":"main","name":"peps","ownerLogin":"pradyunsg","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2018-05-22T13:46:54.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/3275593?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1714328280.0","currentOid":""},"activityList":{"items":[{"before":"a8a4bfb53f195710d6c9b3fe715d21d3b5fc9bdf","after":"76b1aa3ee1ace53c6277b194769ce9c553af6440","ref":"refs/heads/tweak-link-content-handling","pushedAt":"2024-05-06T09:22:30.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Apply suggestions from code review\n\nCo-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>","shortMessageHtmlLink":"Apply suggestions from code review"}},{"before":"13144fb2c6231e8eed4d43fe83e73e017f0affa1","after":"a8a4bfb53f195710d6c9b3fe715d21d3b5fc9bdf","ref":"refs/heads/tweak-link-content-handling","pushedAt":"2024-04-28T18:50:03.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Use an option instead of argument in banner directives\n\nWhen a reST directive has `has_content` set to `True`, optional\narguments and `final_argument_whitespace` set to True, the presence of a\nnewline at the start of the directive is significant in communicating\nwhether specific markup is treated as the argument or content.\n\n .. banner-1:: This is an argument\n This is still the argument.\n\n This is content.\n\n .. banner-2::\n This is still the argument.\n\n This is content.\n\n .. banner-3::\n\n This is content.\n\n This is more content.\n\nIn the above example, `banner-2` and `banner-3` are very similar and\nonly different in the presence of a newline. This is a subtle failure\nmode where written content can end up being silently ignored by the reST\ndirective due to how arguments vs contents are parsed.\n\nInstead of accommodating for this behaviour by adding additional\ncomplexity to the directive being used, this change stops trying to mix\nmultiline arguments and content in a single directive by using explicit\noptions instead. This requires more verbosity but also eliminates this\nfailure mode entirely.\n\n .. banner-1::\n :option: This is the option.\n This is still the option.\n\n .. banner-2::\n This is content.\n\n This is still content.\n\n .. banner-3::\n\n This is content.\n\n This is still content.\n\nWith this change, presence of a newline at the start of the directive is\nnot determining if specific markup is treated as the argument or\ncontent. This is instead communicated by the presence of the option\nsyntax which is more explicit and presents proper errors when the syntax\nis incorrect.","shortMessageHtmlLink":"Use an option instead of argument in banner directives"}},{"before":"e8e8a60467700cbfc1a4c1bc7e72d3df8065cfce","after":"13144fb2c6231e8eed4d43fe83e73e017f0affa1","ref":"refs/heads/tweak-link-content-handling","pushedAt":"2024-04-28T18:28:52.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Use an option instead of argument in banner directives\n\nWhen a reST directive has both `has_content` set to `True`, optional\narguments and `final_argument_whitespace` set to True, the presence of a\nnewline at the start of the directive is significant in communicating\nwhether specific markup is treated as the argument or content.\n\n .. banner-1:: This is an argument\n This is still the argument.\n\n This is content.\n\n .. banner-2::\n This is still the argument.\n\n This is content.\n\n .. banner-3::\n\n This is content.\n\n This is more content.\n\nIn the above example, `banner-2` and `banner-3` are very similar\nand only different in the presence of a newline. This is a\nsubtle failure mode where written content can end up being silently ignored by\nthe reST directive due to how arguments vs contents are parsed.\n\nInstead of attempting to accommodate for this failure mode by adding\nadditional complexity to the directive being used, the approach taken\nhere moves away from trying to mix multiline arguments and content in a\nsingle directive by using explicit options instead. This requires more\nverbosity but also eliminates this failure mode entirely.\n\n .. banner-1::\n :option: This is the option.\n This is still the option.\n\n .. banner-2::\n This is content.\n\n This is still content.\n\n .. banner-3::\n\n This is content.\n\n This is still content.\n\nWith this change, presence of a newline at the start of the directive is\nnot determining if specific markup is treated as the argument or\ncontent. This is instead communicated by the presence of the option\nsyntax which is more explicit and presents proper errors when the syntax\nis incorrect.","shortMessageHtmlLink":"Use an option instead of argument in banner directives"}},{"before":"aa9201fe8dbc861981802a13bf84a2b3d63785a1","after":"e8e8a60467700cbfc1a4c1bc7e72d3df8065cfce","ref":"refs/heads/tweak-link-content-handling","pushedAt":"2024-04-28T18:23:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Use an option instead of argument in banner directives\n\nWhen a reST directive has both `has_content` set to `True`, optional\narguments and `final_argument_whitespace` set to True, the presence of a\nnewline at the start of the directive is significant in communicating\nwhether specific markup is treated as the argument or content.\n\n .. banner-1:: This is an argument\n This is still the argument.\n\n This is content.\n\n .. banner-2::\n This is still the argument.\n\n This is content.\n\n .. banner-3::\n\n This is content.\n\n This is more content.\n\nIn the above example, `banner-2` and `banner-3` are very similar\nand only different in the presence of a newline. This is a\nsubtle failure mode where written content can end up being silently ignored by\nthe reST directive due to how arguments vs contents are parsed.\n\nInstead of attempting to accommodate for this failure mode by adding\nadditional complexity to the directive being used, the approach taken\nhere moves away from trying to mix multiline arguments and content in a\nsingle directive by using explicit options instead. This requires more\nverbosity but also eliminates this failure mode entirely.\n\n .. banner-1::\n :option: This is the option.\n This is still the option.\n\n .. banner-2::\n This is content.\n\n This is still content.\n\n .. banner-3::\n\n This is content.\n\n This is still content.\n\nWith this change, presence of a newline at the start of the directive is\nnot determining if specific markup is treated as the argument or\ncontent. This is instead communicated by the presence of the option\nsyntax which is more explicit and presents proper errors when the syntax\nis incorrect.","shortMessageHtmlLink":"Use an option instead of argument in banner directives"}},{"before":null,"after":"aa9201fe8dbc861981802a13bf84a2b3d63785a1","ref":"refs/heads/tweak-link-content-handling","pushedAt":"2024-04-28T18:18:00.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Use an option instead of argument in banner directives\n\nWhen a reST directive has both `has_content` set to `True`, optional\narguments and `final_argument_whitespace` set to True, the presence of a\nnewline at the start of the directive is significant in communicating\nwhether specific markup is treated as the argument or content.\n\n .. banner-1:: This is an argument\n This is still the argument.\n\n This is content.\n\n .. banner-2::\n This is still the argument.\n\n This is content.\n\n .. banner-3::\n\n This is content.\n\n This is more content.\n\nIn the above example, `banner-2` and `banner-3` are very similar\nand only different in the presence of a newline. This is a\nsubtle failure mode where written content can end up being silently ignored by\nthe reST directive due to how arguments vs contents are parsed.\n\nInstead of attempting to accomodate for this failure mode by adding\nadditional complexity to the directive being used, the approach taken\nhere moves away from trying to mix multiline arguments and content in a\nsingle directive by using explicit options instead. This requires more\nverbosity but also eliminates this failure mode entirely.\n\n .. banner-1::\n :option: This is the option.\n This is still the option.\n\n .. banner-2::\n This is content.\n\n This is still content.\n\n .. banner-3::\n\n This is content.\n\n This is still content.\n\nWith such a change, presence of a newline at the start of the directive\nis not communicating whether specific markup is treated as\nthe argument or content. This is instead communicated by the presence\nof the option.","shortMessageHtmlLink":"Use an option instead of argument in banner directives"}},{"before":"04d8852fdcccd1ea140aebdd90c5f77b677f8b91","after":"bae7e02deaba39e67235e8b298da878ac333e3a4","ref":"refs/heads/gh-pages","pushedAt":"2024-04-28T15:49:19.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ pradyunsg/peps@72595af7b18306146ae88d644387efa22d5ad82b ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ 72595af ๐Ÿš€"}},{"before":"678bc9b8d311cacc31ff3c388705c5ad1564d519","after":"72595af7b18306146ae88d644387efa22d5ad82b","ref":"refs/heads/main","pushedAt":"2024-04-28T15:47:36.000Z","pushType":"push","commitsCount":287,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 740: Feedback, round 2 (#3692)\n\nSigned-off-by: William Woodruff \r\nCo-authored-by: Jelle Zijlstra \r\nCo-authored-by: Facundo Tuesca \r\nCo-authored-by: Dustin Ingram ","shortMessageHtmlLink":"PEP 740: Feedback, round 2 (python#3692)"}},{"before":"065157995da68a095bc4a219a3a4bb83adde1095","after":null,"ref":"refs/heads/725-fix-project-optional-dependencies","pushedAt":"2023-09-01T20:54:35.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"}},{"before":"74e95ecf74bf316921b42abb468828c43c664f42","after":"04d8852fdcccd1ea140aebdd90c5f77b677f8b91","ref":"refs/heads/gh-pages","pushedAt":"2023-09-01T20:26:45.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ pradyunsg/peps@678bc9b8d311cacc31ff3c388705c5ad1564d519 ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ 678bc9b ๐Ÿš€"}},{"before":null,"after":"065157995da68a095bc4a219a3a4bb83adde1095","ref":"refs/heads/725-fix-project-optional-dependencies","pushedAt":"2023-09-01T20:26:02.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 725: Fix example using `project.optional-dependencies`\n\nCorrect the syntax used to specify optional runtime Python dependencies.","shortMessageHtmlLink":"PEP 725: Fix example using project.optional-dependencies"}},{"before":"57b1d94a4f8dee71bd96a8f1dbd0a5c6b010c851","after":"678bc9b8d311cacc31ff3c388705c5ad1564d519","ref":"refs/heads/main","pushedAt":"2023-09-01T20:24:09.000Z","pushType":"push","commitsCount":192,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Lint: Enable pre-commit default role checks (#3415)","shortMessageHtmlLink":"Lint: Enable pre-commit default role checks (python#3415)"}},{"before":"142d9ac2b015b495ff571e17b0a54b58c0c7e179","after":"74e95ecf74bf316921b42abb468828c43c664f42","ref":"refs/heads/gh-pages","pushedAt":"2023-07-10T14:51:29.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ pradyunsg/peps@57b1d94a4f8dee71bd96a8f1dbd0a5c6b010c851 ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ 57b1d94 ๐Ÿš€"}},{"before":"63a594ff3866794f889c712e07b6204a5f7f8f65","after":"57b1d94a4f8dee71bd96a8f1dbd0a5c6b010c851","ref":"refs/heads/main","pushedAt":"2023-07-10T14:49:32.000Z","pushType":"push","commitsCount":51,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 387: Add Soft Deprecation section (#3182)","shortMessageHtmlLink":"PEP 387: Add Soft Deprecation section (python#3182)"}},{"before":"892c922ab6ca68bcc3cc0146401ed9a4998554d4","after":"4fc256feb1d6b8e71d6c390dea479dff0fa4d4c3","ref":"refs/heads/rename","pushedAt":"2023-04-26T23:20:39.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"WHee","shortMessageHtmlLink":"WHee"}},{"before":"ca550d4560fe6ae4a296a89ea9e21a655901d6a2","after":"892c922ab6ca68bcc3cc0146401ed9a4998554d4","ref":"refs/heads/rename","pushedAt":"2023-04-26T22:56:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Update CODEOWNERS","shortMessageHtmlLink":"Update CODEOWNERS"}},{"before":null,"after":"ca550d4560fe6ae4a296a89ea9e21a655901d6a2","ref":"refs/heads/rename","pushedAt":"2023-04-26T22:54:31.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Drop the inclusion of `docs/` files in the rendered site\n\nThese are not strictly PEP content.","shortMessageHtmlLink":"Drop the inclusion of docs/ files in the rendered site"}},{"before":"847559038e1d736acab3f6cc0e1aaf33124a3f3e","after":"142d9ac2b015b495ff571e17b0a54b58c0c7e179","ref":"refs/heads/gh-pages","pushedAt":"2023-04-26T20:44:20.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ pradyunsg/peps@63a594ff3866794f889c712e07b6204a5f7f8f65 ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ 63a594f ๐Ÿš€"}},{"before":"f223b5bd71bf3983f66c7ce7ba49f70d4ad132f4","after":"63a594ff3866794f889c712e07b6204a5f7f8f65","ref":"refs/heads/main","pushedAt":"2023-04-26T20:42:36.000Z","pushType":"push","commitsCount":13,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 649: Fix literal block syntax (#3125)","shortMessageHtmlLink":"PEP 649: Fix literal block syntax (python#3125)"}},{"before":"3b3940ca5d31fab873f5a46c90e468fd8740ae5d","after":null,"ref":"refs/heads/fix-typo","pushedAt":"2023-04-19T20:25:09.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"}},{"before":null,"after":"3b3940ca5d31fab873f5a46c90e468fd8740ae5d","ref":"refs/heads/fix-typo","pushedAt":"2023-04-19T20:20:08.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 704: Add a missing word in PEP withdrawal notice","shortMessageHtmlLink":"PEP 704: Add a missing word in PEP withdrawal notice"}},{"before":"4c746c6630c1f5a3aa207336d3b359bde34fdbf2","after":null,"ref":"refs/heads/fix-lint","pushedAt":"2023-04-19T19:57:32.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"}},{"before":null,"after":"4c746c6630c1f5a3aa207336d3b359bde34fdbf2","ref":"refs/heads/fix-lint","pushedAt":"2023-04-19T19:55:58.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 649: Fix the lint checks\n\nThis fixes the output and incorrect markup in certain instances.","shortMessageHtmlLink":"PEP 649: Fix the lint checks"}},{"before":"63dc641f689e2053f2edefd4d8e02cf896014b06","after":"847559038e1d736acab3f6cc0e1aaf33124a3f3e","ref":"refs/heads/gh-pages","pushedAt":"2023-04-19T19:54:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ pradyunsg/peps@f223b5bd71bf3983f66c7ce7ba49f70d4ad132f4 ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ f223b5b ๐Ÿš€"}},{"before":"f10fdabaec3f847b86f96f315d725b9628e002c7","after":"f223b5bd71bf3983f66c7ce7ba49f70d4ad132f4","ref":"refs/heads/main","pushedAt":"2023-04-19T19:52:55.000Z","pushType":"push","commitsCount":16,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"Update PEP 649 with a major revision. (#3106)\n\nUpdate PEP 649 with a major revision.","shortMessageHtmlLink":"Update PEP 649 with a major revision. (python#3106)"}},{"before":"706aca5b2f4bfd279d81d0d10b411c70c7910342","after":"63dc641f689e2053f2edefd4d8e02cf896014b06","ref":"refs/heads/gh-pages","pushedAt":"2023-04-04T19:28:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ pradyunsg/peps@f10fdabaec3f847b86f96f315d725b9628e002c7 ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ f10fdab ๐Ÿš€"}},{"before":"3028f07ad7763a2e4d1d28dc7fb16c9259ac8edf","after":"f10fdabaec3f847b86f96f315d725b9628e002c7","ref":"refs/heads/main","pushedAt":"2023-04-04T19:27:13.000Z","pushType":"push","commitsCount":6,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 710: Add discuss thread to PEP's post-history (#3087)\n\nSigned-off-by: Fridolin Pokorny ","shortMessageHtmlLink":"PEP 710: Add discuss thread to PEP's post-history (python#3087)"}},{"before":"f387734df3626bbbb25156090d6ea61bc0e00342","after":null,"ref":"refs/heads/704-withdraw","pushedAt":"2023-04-01T18:48:25.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"}},{"before":"59d9be2579536d6bad41757682f7deb33458def9","after":"f387734df3626bbbb25156090d6ea61bc0e00342","ref":"refs/heads/704-withdraw","pushedAt":"2023-04-01T09:49:11.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 704: Withdraw and add a withdrawal notice","shortMessageHtmlLink":"PEP 704: Withdraw and add a withdrawal notice"}},{"before":"c8ad85f798dcc0c712daa502b66ae2a6525a547a","after":"59d9be2579536d6bad41757682f7deb33458def9","ref":"refs/heads/704-withdraw","pushedAt":"2023-04-01T09:44:49.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 704: Withdraw and add a withdrawal notice","shortMessageHtmlLink":"PEP 704: Withdraw and add a withdrawal notice"}},{"before":"dc9d91caf147f9e05256216bcca4e3b9d98b3e4c","after":"c8ad85f798dcc0c712daa502b66ae2a6525a547a","ref":"refs/heads/704-withdraw","pushedAt":"2023-04-01T09:38:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pradyunsg","name":"Pradyun Gedam","path":"/pradyunsg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3275593?s=80&v=4"},"commit":{"message":"PEP 704: Withdraw and add a withdrawal notice","shortMessageHtmlLink":"PEP 704: Withdraw and add a withdrawal notice"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEQlpKWQA","startCursor":null,"endCursor":null}},"title":"Activity ยท pradyunsg/peps"}