Skip to content

Commit 0cf3491

Browse files
authored
CLN: Remove encoding specifier (#32955)
1 parent 63c631f commit 0cf3491

19 files changed

+0
-37
lines changed

pandas/_libs/khash.pxd

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
from cpython.object cimport PyObject
32
from numpy cimport int64_t, uint64_t, int32_t, uint32_t, float64_t
43

pandas/_libs/missing.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from numpy cimport ndarray, uint8_t
42

53
cpdef bint checknull(object val)

pandas/_libs/tslibs/c_timestamp.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from cpython.datetime cimport datetime
42

53
from numpy cimport int64_t

pandas/_libs/tslibs/ccalendar.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from cython cimport Py_ssize_t
42

53
from numpy cimport int64_t, int32_t

pandas/_libs/tslibs/conversion.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from cpython.datetime cimport datetime
42

53
from numpy cimport int64_t, int32_t

pandas/_libs/tslibs/frequencies.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
cpdef str get_rule_month(object source, str default=*)
42

53
cpdef get_freq_code(freqstr)

pandas/_libs/tslibs/nattype.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from cpython.datetime cimport datetime
42

53
from numpy cimport int64_t

pandas/_libs/tslibs/np_datetime.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from cpython.datetime cimport date, datetime
42

53
from numpy cimport int64_t, int32_t

pandas/_libs/tslibs/offsets.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
# -*- coding: utf-8 -*-
2-
31
cdef to_offset(object obj)

pandas/_libs/tslibs/timedeltas.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from numpy cimport int64_t
42

53
# Exposed for tslib, not intended for outside use.

pandas/_libs/tslibs/timestamps.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
from numpy cimport int64_t
42
from pandas._libs.tslibs.np_datetime cimport npy_datetimestruct
53

pandas/_libs/tslibs/timezones.pxd

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
cpdef bint is_utc(object tz)
42
cdef bint is_tzlocal(object tz)
53

pandas/tests/plotting/common.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
import os
42
import warnings
53

pandas/tests/plotting/test_boxplot_method.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
import itertools
42
import string
53

pandas/tests/plotting/test_frame.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
""" Test cases for DataFrame.plot """
42

53
from datetime import date, datetime

pandas/tests/plotting/test_groupby.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
""" Test cases for GroupBy.plot """
42

53

pandas/tests/plotting/test_hist_method.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
""" Test cases for .hist method """
42

53
import numpy as np

pandas/tests/plotting/test_misc.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
""" Test cases for misc plot functions """
42

53
import numpy as np

pandas/tests/plotting/test_series.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
""" Test cases for Series.plot """
42

53

0 commit comments

Comments
 (0)