From f1ac53c61c95e41f23ee7f2b6744acb3fe4ac94a Mon Sep 17 00:00:00 2001 From: MKhalusova Date: Fri, 2 Aug 2019 09:28:17 -0400 Subject: [PATCH] Backport PR #27710: DOC: Fixed a typo in the roadmap.rst (the word "uses" appeared twice) --- doc/source/development/roadmap.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/development/roadmap.rst b/doc/source/development/roadmap.rst index 88e0a18e6b81a..00598830e2fe9 100644 --- a/doc/source/development/roadmap.rst +++ b/doc/source/development/roadmap.rst @@ -96,7 +96,7 @@ Decoupling of indexing and internals The code for getting and setting values in pandas' data structures needs refactoring. In particular, we must clearly separate code that converts keys (e.g., the argument -to ``DataFrame.loc``) to positions from code that uses uses these positions to get +to ``DataFrame.loc``) to positions from code that uses these positions to get or set values. This is related to the proposed BlockManager rewrite. Currently, the BlockManager sometimes uses label-based, rather than position-based, indexing. We propose that it should only work with positional indexing, and the translation of keys