@@ -2579,11 +2579,8 @@ def to_pickle(self, path, compression='infer',
25792579 protocol : int
25802580 Int which indicates which protocol should be used by the pickler,
25812581 default HIGHEST_PROTOCOL (see [1]_ paragraph 12.1.2). The possible
2582- values for this parameter depend on the version of Python. For
2583- Python 2.x, possible values are 0, 1, 2. For Python>=3.0, 3 is a
2584- valid value. For Python >= 3.4, 4 is a valid value. A negative
2585- value for the protocol parameter is equivalent to setting its value
2586- to HIGHEST_PROTOCOL.
2582+ values are 0, 1, 2, 3, 4. A negative value for the protocol
2583+ parameter is equivalent to setting its value to HIGHEST_PROTOCOL.
25872584
25882585 .. [1] https://docs.python.org/3/library/pickle.html
25892586 .. versionadded:: 0.21.0
@@ -2836,7 +2833,7 @@ def to_latex(self, buf=None, columns=None, col_space=None, header=True,
28362833 characters in column names.
28372834 encoding : str, optional
28382835 A string representing the encoding to use in the output file,
2839- defaults to 'ascii' on Python 2 and ' utf-8' on Python 3 .
2836+ defaults to 'utf-8'.
28402837 decimal : str, default '.'
28412838 Character recognized as decimal separator, e.g. ',' in Europe.
28422839
@@ -2965,7 +2962,7 @@ def to_csv(self, path_or_buf=None, sep=",", na_rep='', float_format=None,
29652962 Python write mode, default 'w'.
29662963 encoding : str, optional
29672964 A string representing the encoding to use in the output file,
2968- defaults to 'ascii' on Python 2 and ' utf-8' on Python 3 .
2965+ defaults to 'utf-8'.
29692966 compression : str, default 'infer'
29702967 Compression mode among the following possible values: {'infer',
29712968 'gzip', 'bz2', 'zip', 'xz', None}. If 'infer' and `path_or_buf`
0 commit comments