Skip to content

Commit e523480

Browse files
committed
removed unnecessary comments
1 parent 8d8160e commit e523480

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/core/series.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,6 @@ def _init_dict(self, data, index=None, dtype=None):
355355
# raises KeyError), so we iterate the entire dict, and align
356356
if data:
357357
# GH:34717
358-
# Using the below way for generating keys and values
359-
# increasing the performance by 50%, instead of zip
360358
keys = tuple(data.keys())
361359
values = list(data.values()) # Generating list of values- faster way
362360
elif index is not None:

0 commit comments

Comments
 (0)