-
# Rule request
## Thesis
```
# bad
a = 1, 2
# good
a = (1, 2)
```
## Reasoning
It shocked me to learn that in Python tuples are defined by commas and not parenthesis. This rule …
-
```
If the Python `zip` function is used to combine X and Y coordinates, the result
is a list of tuples:
X = [1, 5, 5, 3, 1]
Y = [5, 5, 1, 3, 1]
coors = zip(X, Y) # list of tuples
However, this ob…
-
```
If the Python `zip` function is used to combine X and Y coordinates, the result
is a list of tuples:
X = [1, 5, 5, 3, 1]
Y = [5, 5, 1, 3, 1]
coors = zip(X, Y) # list of tuples
However, this ob…
-
This would be like what `__repr__` is used for in many built-in Python types, or a schema as a list of tuples that can be passed to `pyarrow.schema`
**Reporter**: [Wes McKinney](https://issues.apache…
-
_"As a dynamic language, Python encourages a programming style of considering classes and objects in terms of their methods and attributes, more than where they fit into the class hierarchy.
This c…
-
### Parent Issue
#6581
### Detail of Subtask
User defined AGG function and user defined TABLE function are significantly different from scalar UDF. See #9778
UDAF and UDTF also need infrastr…
-
This issue is related to https://github.com/fox-it/dissect.target/pull/681.
The field type `digest` is a dict in Python which is an object in JSON, as shown below.
```bash
target-query -t -f m…
-
**Describe the bug**
[Maybe this behavior is normal] Array-like query params (like `?scope=read&scope=write`) are not supported when creating `OAuth2Request` object.
**To Reproduce**
A minima…
-
```
What steps will reproduce the problem?
Problem on Python 2.5
Has error on decompile at next files:
1. test_listComprehensions.pyc
(http://code.google.com/p/unpyc/source/browse/trunk/test/bytecode…
-
```
What steps will reproduce the problem?
Problem on Python 2.5
Has error on decompile at next files:
1. test_listComprehensions.pyc
(http://code.google.com/p/unpyc/source/browse/trunk/test/bytecode…