mirror of
				https://github.com/ARM-software/devlib.git
				synced 2025-10-30 21:43:21 +00:00 
			
		
		
		
	doc/connection: Document the fact that pull supports globs
				
					
				
			This feature is supported implicitly by SshConnection and explicitly by AdbConnection. A subsequent commit implements it for LocalConnection.
This commit is contained in:
		| @@ -31,9 +31,11 @@ class that implements the following methods. | ||||
|  | ||||
| .. method:: pull(self, source, dest, timeout=None) | ||||
|  | ||||
|    Transfer a file from the connected device to the host machine. | ||||
|    Transfer a file, or files matching a glob pattern, from the connected device | ||||
|    to the host machine. | ||||
|  | ||||
|    :param source: path of to the file on the connected device | ||||
|    :param source: path of to the file on the connected device. If ``dest`` is a | ||||
|        directory, may be a glob pattern. | ||||
|    :param dest: path of to the file on the host | ||||
|    :param timeout: timeout (in seconds) for the transfer; if the transfer does | ||||
|        not  complete within this period, an exception will be raised. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user