Skip to content

Commit 798da62

Browse files
author
Jiang Yue
committed
add whatsnew entry
1 parent e53b620 commit 798da62

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

doc/source/whatsnew/v0.25.0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ Other Enhancements
133133
- :meth:`DataFrame.describe` now formats integer percentiles without decimal point (:issue:`26660`)
134134
- Added support for reading SPSS .sav files using :func:`read_spss` (:issue:`26537`)
135135
- Added new option ``plotting.backend`` to be able to select a plotting backend different than the existing ``matplotlib`` one. Use ``pandas.set_option('plotting.backend', '<backend-module>')`` where ``<backend-module`` is a library implementing the pandas plotting API (:issue:`14130`)
136+
- :meth:`io.json.json_normalize` now accepts a `fill_value` argument to fill NaN fields in given columns (:issue:`16918`)
136137

137138
.. _whatsnew_0250.api_breaking:
138139

pandas/tests/io/json/test_normalize.py

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def deep_nested():
3838
}
3939
]
4040

41+
4142
@pytest.fixture
4243
def deep_nested_missing():
4344
# deeply nested data with some missing values
@@ -65,6 +66,7 @@ def deep_nested_missing():
6566
}
6667
]
6768

69+
6870
@pytest.fixture
6971
def state_data():
7072
return [

0 commit comments

Comments
 (0)