diff --git a/README.md b/README.md index 5a3267d..de65e87 100644 --- a/README.md +++ b/README.md @@ -1545,7 +1545,7 @@ value = args. * **Use `'help='` to set argument description that will be displayed in help message.** * **Use `'default='` to set the default value.** -* **Use `'type=FileType()'` for files. Accepts 'encoding', but 'newline' is always None.** +* **Use `'type=FileType()'` for files. Accepts 'encoding', but 'newline' is None.** Open diff --git a/index.html b/index.html index 3e84a53..f82571f 100644 --- a/index.html +++ b/index.html @@ -1321,7 +1321,7 @@ value = args.<name>
  • Use 'help=<str>' to set argument description that will be displayed in help message.
  • Use 'default=<el>' to set the default value.
  • -
  • Use 'type=FileType(<mode>)' for files. Accepts 'encoding', but 'newline' is always None.
  • +
  • Use 'type=FileType(<mode>)' for files. Accepts 'encoding', but 'newline' is None.

#Open

Opens the file and returns a corresponding file object.

<file> = open(<path>, mode='r', encoding=None, newline=None)
 
diff --git a/pdf/remove_links.py b/pdf/remove_links.py index 96e31ae..e89c850 100755 --- a/pdf/remove_links.py +++ b/pdf/remove_links.py @@ -21,7 +21,7 @@ MATCHES = { 'For XML and binary Excel files (xlsx, xlsm and xlsb) use Pandas library.': 'For XML and binary Excel files (xlsx, xlsm and xlsb) use Pandas library (p. 46).', 'Bools will be stored and returned as ints and dates as ISO formatted strings.': 'Bools will be stored and returned as ints and dates as ISO formatted strings (p. 9).', 'An object with the same interface called ProcessPoolExecutor provides true parallelism by running a separate interpreter in each process. All arguments must be pickable.': 'An object with the same interface called ProcessPoolExecutor provides true parallelism by running a separate interpreter in each process. All arguments must be pickable (p. 25).', - 'Asyncio module also provides its own Queue, Event, Lock and Semaphore classes.': 'Asyncio module also provides its own Queue, Event, Lock and Semaphore classes (p. 30).', + 'Asyncio module also provides its own Queue, Event, Lock and Semaphore classes.': 'Asyncio module also provides its own Queue, Event, Lock and Semaphore classes (p. 30).', }