[RPUSHX](https://redis.io/commands/rpushx/) allows multiple elements, but the redis-py call only accepts a single value ([source](https://github.com/redis/redis-py/blob/1596ac6a0bbc1e00e57c6a48e255a8f917498e39/redis/commands/core.py#L2826)). LPUSHX does accept multiple values, so I don't think there was any sort of technical limitation for supporting this? ([source](https://github.com/redis/redis-py/blob/1596ac6a0bbc1e00e57c6a48e255a8f917498e39/redis/commands/core.py#L2736)) **Version**: redis-py: 5.0.0 redis 5.0.7 **Platform**: Python 3.9.18 **Description**: See above related PR: https://github.com/redis/redis-py/pull/1559/