Collin Winter 
								
							 
						 
						
							
							
							
							
								
							
							
								6f187743ff 
								
							 
						 
						
							
							
								
								Patch 1339796: add a relpath() function to os.path.  
							
							
							
						 
						
							2007-03-16 22:16:08 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Georg Brandl 
								
							 
						 
						
							
							
							
							
								
							
							
								03b90d8cfd 
								
							 
						 
						
							
							
								
								Patch  #957650 : "%var%" environment variable references are now properly  
							
							... 
							
							
							
							expanded in ntpath.expandvars(), also "~user" home directory references
are recognized and handled on Windows. 
							
						 
						
							2007-03-13 22:07:36 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								05c075d629 
								
							 
						 
						
							
							
								
								Bug  #1115886 : os.path.splitext('.cshrc') gives now ('.cshrc', '').  
							
							
							
						 
						
							2007-03-07 11:04:33 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Sjoerd Mullender 
								
							 
						 
						
							
							
							
							
								
							
							
								33a0a06d31 
								
							 
						 
						
							
							
								
								Fixed ntpath.expandvars to not replace references to non-existing  
							
							... 
							
							
							
							variables with nothing.  Also added tests.
This fixes bug #494589 . 
							
						 
						
							2007-01-16 16:42:38 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Brett Cannon 
								
							 
						 
						
							
							
							
							
								
							
							
								bdc36273a2 
								
							 
						 
						
							
							
								
								Make ntpath compress multiple slashes between drive letter and the rest of the  
							
							... 
							
							
							
							path.  Also clarifies UNC handling and adds appropriate tests.
Applies patch #988607  to fix bug #980327 .  Thanks Paul Moore. 
							
						 
						
							2004-07-10 20:42:22 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								6578dc925f 
								
							 
						 
						
							
							
								
								Whitespace normalization.  
							
							
							
						 
						
							2002-12-24 18:31:27 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Martin v. Löwis 
								
							 
						 
						
							
							
							
							
								
							
							
								de3337913f 
								
							 
						 
						
							
							
								
								Patch  #536661 : Improve performance of splitext. Add test_macpath.  
							
							
							
						 
						
							2002-12-12 20:30:20 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Barry Warsaw 
								
							 
						 
						
							
							
							
							
								
							
							
								04f357cffe 
								
							 
						 
						
							
							
								
								Get rid of relative imports in all unittests.  Now anything that  
							
							... 
							
							
							
							imports e.g. test_support must do so using an absolute package name
such as "import test.test_support" or "from test import test_support".
This also updates the README in Lib/test, and gets rid of the
duplicate data dirctory in Lib/test/data (replaced by
Lib/email/test/data).
Now Tim and Jack can have at it. :) 
							
						 
						
							2002-07-23 19:04:11 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Fred Drake 
								
							 
						 
						
							
							
							
							
								
							
							
								5e99731ab9 
								
							 
						 
						
							
							
								
								Only test ntpath.abspath() on Windows.  This allows the rest of the module to  
							
							... 
							
							
							
							be tested regardless of the host platform. 
							
						 
						
							2002-01-15 03:46:43 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								e5a611c1bc 
								
							 
						 
						
							
							
								
								A couple more test cases to ensure join() doesn't add an "extra" backslash  
							
							... 
							
							
							
							in the presence of empty-string arguments. 
							
						 
						
							2001-11-05 21:33:04 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								6a3e5f14a6 
								
							 
						 
						
							
							
								
								SF bug 478425:  Change in os.path.join (ntpath.py)  
							
							... 
							
							
							
							ntpath.join('a', '') was producing 'a' instead of 'a\\' as in 2.1.
Impossible to guess what was ever *intended*, but since split('a\\')
produces ('a', ''), I think it's best if join('a', '') gives 'a\\' back. 
							
						 
						
							2001-11-05 21:25:02 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								54a14a373e 
								
							 
						 
						
							
							
								
								SF bug  #456621 :  normpath on Win32 not collapsing c:\\..  
							
							... 
							
							
							
							I actually rewrote normpath quite a bit:  it had no test cases, and as
soon as I starting writing some I found several cases that didn't make
sense. 
							
						 
						
							2001-08-30 22:05:26 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								33dc0a1705 
								
							 
						 
						
							
							
								
								One more crack at join():  stop trying to pretend this isn't a mass of  
							
							... 
							
							
							
							special cases.  test_pkg works again on Windows. 
							
						 
						
							2001-07-27 08:09:54 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								4223f89edd 
								
							 
						 
						
							
							
								
								Change ntpath.join() so that join("d:/", "/whatever") returns  
							
							... 
							
							
							
							d:/whatever instead of /whatever.  While I'm afraid changing isabs()
to be *consistent* with this would break lots of code, it makes
best sense for join() to do it this way.  Thanks to Alex Martelli for
pushing back on this one! 
							
						 
						
							2001-07-26 21:54:37 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								d4f7f609bf 
								
							 
						 
						
							
							
								
								Add some test cases for ntpath.join().  
							
							
							
						 
						
							2001-07-19 19:11:41 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Tim Peters 
								
							 
						 
						
							
							
							
							
								
							
							
								3b5e4d1e3c 
								
							 
						 
						
							
							
								
								Cosmetic:  break the long lines in test_ntpath.py, and get rid of its  
							
							... 
							
							
							
							expected-output file. 
							
						 
						
							2001-07-19 19:02:12 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Eric S. Raymond 
								
							 
						 
						
							
							
							
							
								
							
							
								fc170b1fd5 
								
							 
						 
						
							
							
								
								String method conversion.  
							
							
							
						 
						
							2001-02-09 11:51:27 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Fred Drake 
								
							 
						 
						
							
							
							
							
								
							
							
								004d5e6880 
								
							 
						 
						
							
							
								
								Make reindent.py happy (convert everything to 4-space indents!).  
							
							
							
						 
						
							2000-10-23 17:22:08 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Skip Montanaro 
								
							 
						 
						
							
							
							
							
								
							
							
								877d62e72d 
								
							 
						 
						
							
							
								
								added commonprefix test cases  
							
							
							
						 
						
							2000-08-23 16:54:27 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Mark Hammond 
								
							 
						 
						
							
							
							
							
								
							
							
								041307d95c 
								
							 
						 
						
							
							
								
								Remove the test for abspath with an empty path - too hard to do in a cross-platform manner.  
							
							
							
						 
						
							2000-08-14 23:06:37 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Mark Hammond 
								
							 
						 
						
							
							
							
							
								
							
							
								673c6cf3d4 
								
							 
						 
						
							
							
								
								Test for fix to bug  #110673 : os.abspatth() now always returns os.getcwd() on Windows, if an empty path is specified.  It previously did not if an empty path was delegated to win32api.GetFullPathName())  
							
							
							
						 
						
							2000-08-14 06:21:26 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								630a9a6894 
								
							 
						 
						
							
							
								
								Fix the tests now that splitdrive() no longer treats UNC paths special.  
							
							... 
							
							
							
							(Some tests converted to splitunc() tests.) 
							
						 
						
							1999-04-06 19:38:18 +00:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Guido van Rossum 
								
							 
						 
						
							
							
							
							
								
							
							
								ead9d8d2d7 
								
							 
						 
						
							
							
								
								New test for ntpath module  
							
							
							
						 
						
							1999-02-03 17:21:21 +00:00