You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per [PDEP-1](https://pandas.pydata.org/pdeps/0001-purpose-and-guidelines.html), the following issue template should be used when a
11
+
maintainer has opened a PDEP discussion and is ready to call for a vote.
12
+
- type: checkboxes
13
+
attributes:
14
+
label: Locked issue
15
+
options:
16
+
- label: >
17
+
I locked this voting issue so that only voting members are able to cast their votes or
18
+
comment on this issue.
19
+
required: true
20
+
- type: input
21
+
id: PDEP-name
22
+
attributes:
23
+
label: PDEP number and title
24
+
placeholder: >
25
+
PDEP-1: Purpose and guidelines
26
+
validations:
27
+
required: true
28
+
- type: input
29
+
id: PDEP-link
30
+
attributes:
31
+
label: Pull request with discussion
32
+
description: e.g. https://github.com/pandas-dev/pandas/pull/47444
33
+
validations:
34
+
required: true
35
+
- type: input
36
+
id: PDEP-rendered-link
37
+
attributes:
38
+
label: Rendered PDEP for easy reading
39
+
description: e.g. https://github.com/pandas-dev/pandas/pull/47444/files?short_path=7c449e6#diff-7c449e698132205b235c501f7e47ebba38da4d2b7f9492c98f16745dba787041
40
+
validations:
41
+
required: true
42
+
- type: input
43
+
id: PDEP-number-of-discussion-participants
44
+
attributes:
45
+
label: Discussion participants
46
+
description: >
47
+
You may find it useful to list or total the number of participating members in the
48
+
PDEP discussion PR. This would be the maximum possible disapprove votes.
49
+
placeholder: >
50
+
14 voting members participated in the PR discussion thus far.
51
+
- type: input
52
+
id: PDEP-vote-end
53
+
attributes:
54
+
label: Voting will close in 15 days.
55
+
description: The voting period end date. ('Voting will close in 15 days.' will be automatically written)
56
+
- type: markdown
57
+
attributes:
58
+
value: ---
59
+
- type: textarea
60
+
id: Vote
61
+
attributes:
62
+
label: Vote
63
+
value: |
64
+
Cast your vote in a comment below.
65
+
* +1: approve.
66
+
* 0: abstain.
67
+
* Reason: A one sentence reason is required.
68
+
* -1: disapprove
69
+
* Reason: A one sentence reason is required.
70
+
A disapprove vote requires prior participation in the linked discussion PR.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v3.0.0.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -331,6 +331,7 @@ Performance improvements
331
331
- Performance improvement in :meth:`RangeIndex.reindex` returning a :class:`RangeIndex` instead of a :class:`Index` when possible. (:issue:`57647`, :issue:`57752`)
332
332
- Performance improvement in :meth:`RangeIndex.take` returning a :class:`RangeIndex` instead of a :class:`Index` when possible. (:issue:`57445`, :issue:`57752`)
333
333
- Performance improvement in :func:`merge` if hash-join can be used (:issue:`57970`)
334
+
- Performance improvement in :meth:`to_hdf` avoid unnecessary reopenings of the HDF5 file to speedup data addition to files with a very large number of groups . (:issue:`58248`)
334
335
- Performance improvement in ``DataFrameGroupBy.__len__`` and ``SeriesGroupBy.__len__`` (:issue:`57595`)
335
336
- Performance improvement in indexing operations for string dtypes (:issue:`56997`)
336
337
- Performance improvement in unary methods on a :class:`RangeIndex` returning a :class:`RangeIndex` instead of a :class:`Index` when possible. (:issue:`57825`)
@@ -386,7 +387,7 @@ Interval
386
387
387
388
Indexing
388
389
^^^^^^^^
389
-
-
390
+
- Bug in :meth:`DataFrame.__getitem__` returning modified columns when called with ``slice`` in Python 3.12 (:issue:`57500`)
390
391
-
391
392
392
393
Missing
@@ -406,7 +407,6 @@ I/O
406
407
- Bug in :meth:`DataFrame.to_string` that raised ``StopIteration`` with nested DataFrames. (:issue:`16098`)
407
408
- Bug in :meth:`read_csv` raising ``TypeError`` when ``index_col`` is specified and ``na_values`` is a dict containing the key ``None``. (:issue:`57547`)
0 commit comments