From d6d98a3c6e872ab0831823079f3d4778ce488f74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 17 Oct 2024 16:46:50 +0200 Subject: [PATCH] Grammar --- README.md | 4 ++-- index.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 31b6053..dc284fc 100644 --- a/README.md +++ b/README.md @@ -2270,7 +2270,7 @@ log.basicConfig( .propagate = # Cuts off ancestors' handlers if False. ``` * **Parent logger can be specified by naming the child logger `'.'`.** -* **If logger doesn't have a set level it inherits it from the first ancestor that does.** +* **If logger doesn't have a set level, it inherits it from the first ancestor that does.** * **Formatter also accepts: pathname, filename, funcName, lineno, thread and process.** * **RotatingFileHandler creates and deletes files based on 'maxBytes', 'backupCount' args.** * **An object with `'filter()'` method (or the method itself) can be added to loggers and handlers via addFilter(). Message is dropped if filter() returns a false value.** @@ -3362,7 +3362,7 @@ b 3 4 ```python = .to_dict('d/l/s/…') # Returns columns as dicts, lists or series. - = .to_json/html/csv/latex() # Saves output to file if path is passed. + = .to_json/html/csv/latex() # Saves output to a file if path is passed. .to_pickle/excel() # Run `$ pip3 install "pandas[excel]" odfpy`. .to_sql('', ) # Also `if_exists='fail/replace/append'`. ``` diff --git a/index.html b/index.html index ce91649..86c4ad5 100644 --- a/index.html +++ b/index.html @@ -1858,7 +1858,7 @@ log.debug/info/warning/error/critical(<str>) '<parent>.<name>'. -
  • If logger doesn't have a set level it inherits it from the first ancestor that does.
  • +
  • If logger doesn't have a set level, it inherits it from the first ancestor that does.
  • Formatter also accepts: pathname, filename, funcName, lineno, thread and process.
  • RotatingFileHandler creates and deletes files based on 'maxBytes', 'backupCount' args.
  • An object with 'filter(<LogRecord>)' method (or the method itself) can be added to loggers and handlers via addFilter(). Message is dropped if filter() returns a false value.
  • @@ -2736,7 +2736,7 @@ b 3 4
    <dict> = <DF>.to_dict('d/l/s/…')               # Returns columns as dicts, lists or series.
    -<str>  = <DF>.to_json/html/csv/latex()         # Saves output to file if path is passed.
    +<str>  = <DF>.to_json/html/csv/latex()         # Saves output to a file if path is passed.
     <DF>.to_pickle/excel(<path>)                   # Run `$ pip3 install "pandas[excel]" odfpy`.
     <DF>.to_sql('<table_name>', <connection>)      # Also `if_exists='fail/replace/append'`.