Aurora Blog
Home
Golang encoding/json: performance regression marshaling small values for goexperiment.jsonv2
2025-07-16 14:07:09
2068
In order to fix bugs like #22967, #27722, or #33993, where the MarshalJSON method was not called on a pointer receiver, ...
Golang cmd/compile: store pairing on arm64 misses some cases
2025-07-16 14:07:05
2974
After CL 633075, this program:package maintype T struct{ a, b, c int }type TT struct{ i, j T }func f(x *TT) { x.j = T...
Golang x/net/http2: support memory re-use for MetaHeadersFrames
2025-07-16 14:07:00
3313
As pointed out in https://github.com/grpc/grpc-go/issues/1587#issuecomment-340015543 (and in https://github.com/cockroac...
Pandas BUG: describe(include=..) fails with unrelated error if provided data types are not present
2025-07-16 14:06:53
965
Example with current main:>>> df = pd.DataFrame({"a": [1, 2, 3]})>>> df.describe(include=[&q...
Pandas BUG: Operations not implemented for non-1D ExtensionArrays
2025-07-16 14:06:49
3894
Pandas version checks[x] I have checked that this issue has not already been reported.[x] I have confirmed this bug exis...
Pandas BUG: DateOffset default temporal pattern does not work as expected with DST
2025-07-16 14:06:47
3368
Pandas version checks[x] I have checked that this issue has not already been reported.[x] I have confirmed this bug exis...
Pandas REF: share code between pd.array and Series constructor
2025-07-16 14:06:45
737
I've noticed a couple of places in the code where we do runtime imports of Series just to do values = Series(values)._va...
Pandas DISC: remove Index and EA subclasses
2025-07-16 14:06:43
3336
There has been discussion in eg #39133 about having EA-backed Indexes held in base-class Index objects, similar discussi...
Pandas DEPR: __finalize__ and _metadata
2025-07-16 14:06:41
14289
We have some support for propagating metadata, but it is incomplete (38 xfails in tests/generic/test_finalize.py) for pl...
Pandas API/DEPR: dtype=(str|bytes) interpret as pyarrow
2025-07-16 14:06:39
3176
In 2.0 we made a lot of progress in ensuring passing dtype=foo or .astype(foo) actually returned the requested dtype rat...
Pandas API/DEPR: pd.array don't cast numpy int/float/bool arrays to nullable
2025-07-16 14:06:37
645
We should inch towards making this match the other constructor behaviors. In particular, if you pass a numpy array with...
Pandas DEPR: Period, PeriodFoo
2025-07-16 14:06:35
1657
This was discussed a few dev calls ago, merits an issue.Now that we support non-nano TImestamp/datetime64, many of the m...
Pandas BUG: datetime parsing: error message indicating position of conflicting string is wrong for larger data
2025-07-16 14:06:33
2834
Using the latest pandas main (and also happens on released version 2.1.1):In [1]: pd.to_datetime(["2012-01-01"...
Pandas BUG: next_workday observance wrongly adds BDay to holidays on weekdays
2025-07-16 14:06:29
2730
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas BUG: pd.Arrays.SparseArray warning inconsistencies when contained in a pd.DataFrame (potential false positive)
2025-07-16 14:06:27
3686
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas BUG: AttributeError about dateutil.relativedelta when calling pd.read_json(json_data)
2025-07-16 14:06:25
5990
Pandas version checks[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exis...
Pandas BUG: pd.read_sql is incorrectly reading long int when connecting to Teradata
2025-07-16 14:06:23
3432
Pandas version checks[x] I have checked that this issue has not already been reported.[x] I have confirmed this bug exis...
Pandas API: Categorical constructor with dtype raise instead of casting to NA
2025-07-16 14:06:20
662
dti = pd.date_range("2016-01-01", periods=3)ci = pd.Categorical(dti._values)>>> pd.Categorical(["...
Pandas BUG: pd.Grouper cannot be reused in some cases
2025-07-16 14:06:18
3962
[X] I have checked that this issue has not already been reported.[X] I have confirmed this bug exists on the latest vers...
Pandas BUG: DTA/TDA setitem breaks freq on views
2025-07-16 14:06:16
665
DatetimeArray/TimedeltaArray __setitem__ resets the array's freq to None, but this doesn't propagate to views:dti = pd.d...
上一页
下一页
1
…
108
109
110
111
112
…
271
.