diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 2c1fa5ef4439e..a46fbcfa1a31f 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -463,19 +463,6 @@ def __init__(self, data=None, index=None, columns=None, dtype=None, NDFrame.__init__(self, mgr, fastpath=True) - def _init_dict(self, data, index, columns, dtype=None): - """ - Segregate Series based on type and coerce into matrices. - Needs to handle a lot of exceptional cases. - """ - return init_dict(data, index, columns, dtype=dtype) - # TODO: Can we get rid of this as a method? - - def _init_ndarray(self, values, index, columns, dtype=None, copy=False): - # input must be a ndarray, list, Series, index - return init_ndarray(values, index, columns, dtype=dtype, copy=copy) - # TODO: can we just get rid of this as a method? - # ---------------------------------------------------------------------- @property diff --git a/pandas/core/internals/construction.py b/pandas/core/internals/construction.py index 5859dc9e858b7..cc5ccd92dbd44 100644 --- a/pandas/core/internals/construction.py +++ b/pandas/core/internals/construction.py @@ -1,6 +1,6 @@ """ Functions for preparing various inputs passed to the DataFrame or Series -constructors before passing them to aBlockManager. +constructors before passing them to a BlockManager. """ from collections import OrderedDict