Nadir Chowdhury

Results 9 issues of Nadir Chowdhury

## Summary Tracking discord/discord-api-docs#1762 The design for this definitely didn't seem to stick extremely well with me, so reviews would be appreciated. ## Checklist - [x] If code changes were...

### Summary This is an adaptation of the now defunct PR - #645. It allows for two ways of command customization: - Separator: Essentially lets you separate the arguments using...

### Summary This PR was made to add a tutorial for HelpCommand and the like. I'm sure there's many issues with this, but I just wanted to get this out...

needs review

## Summary work on embeds guide ## Checklist - [x] This PR is **not** a code change (e.g. documentation, README, ...)

guide

An extension of #2566, seems like the typings for `parse_known_args`, `parse_intermixed_args`, `parse_known_intermixed_args` (and the undocumented `_parse_known_args`) of `argparse.ArgumentParser` were overlooked, as they all share the same pattern as `parse_args` for...

`array.array` inheriting from `MutableSequence` has some unintended consequences, such as below ```py import array x = array.array("B") x.clear() ``` At runtime `array.array` does not have `.clear()`. Is it meant to...

stubs: false negative

## Change Summary Currently, type parameters are not correctly resolved down the TypedDict due to using `typing.get_type_hints`. This PR aims to fix this behaviour. 😌 ## Related issue number Fix...

awaiting author revision
relnotes-fix

- Application - README

enhancement

`get_type_hints` can now resolve TypeVarLikes correctly for all generic classes, including TypedDicts. There were a lot of edge cases that I tested and subsequently wrote unit tests for. I've also...

awaiting review