diff --git a/README.md b/README.md index 009a83d..cd5f95d 100644 --- a/README.md +++ b/README.md @@ -2318,7 +2318,7 @@ import asyncio as aio = () # Creates a coroutine. = await # Starts the coroutine and returns result. = aio.create_task() # Schedules coroutine for execution. - = await # Returns result. + = await # Returns result. Also .cancel(). ``` ```python @@ -3346,7 +3346,7 @@ plt.show() # Displays the plot. Also plt.sav ```python = pd.read_json/html('') # Run `$ pip3 install beautifulsoup4 lxml`. - = pd.read_csv('') # Also `names=, parse_dates=False`. + = pd.read_csv('') # `header/index_col/dtype/parse_dates=`. = pd.read_pickle/excel('') # Use `sheet_name=None` to get all Excel sheets. = pd.read_sql('', ) # SQLite3/SQLAlchemy connection (see #SQLite). ``` diff --git a/index.html b/index.html index 31122ca..6eeb2de 100644 --- a/index.html +++ b/index.html @@ -54,7 +54,7 @@
- +
@@ -1909,7 +1909,7 @@ delattr(<object>, '<attr_name>')
<coro> = <async_func>(<args>)             # Creates a coroutine.
 <obj>  = await <coroutine>                # Starts the coroutine and returns result.
 <task> = aio.create_task(<coroutine>)     # Schedules coroutine for execution.
-<obj>  = await <task>                     # Returns result.
+<obj>  = await <task>                     # Returns result. Also <task>.cancel().
 
<coro> = aio.gather(<coro/task>, ...)     # Schedules coroutines. Returns results when awaited.
 <coro> = aio.wait(<tasks>, …)             # `aio.ALL/FIRST_COMPLETED`. Returns (done, pending).
@@ -2741,7 +2741,7 @@ plt.show()                                     # Disp
 
<DF> = pd.read_json/html('<str/path/url>')     # Run `$ pip3 install beautifulsoup4 lxml`.
-<DF> = pd.read_csv('<path/url>')               # Also `names=<list>, parse_dates=False`.
+<DF> = pd.read_csv('<path/url>')               # `header/index_col/dtype/parse_dates=<obj>`.
 <DF> = pd.read_pickle/excel('<path/url>')      # Use `sheet_name=None` to get all Excel sheets.
 <DF> = pd.read_sql('<table/query>', <conn.>)   # SQLite3/SQLAlchemy connection (see #SQLite).
 
@@ -2933,7 +2933,7 @@ $ deactivate # Deactivates the activ
- +