mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[utils] Handle rd-suffixed day parts in unified_strdate (#23199)
This commit is contained in:
		
				
					committed by
					
						 Sergey M
						Sergey M
					
				
			
			
				
	
			
			
			
						parent
						
							cf3c9eafad
						
					
				
				
					commit
					9d30c2132a
				
			| @@ -340,6 +340,8 @@ class TestUtil(unittest.TestCase): | ||||
|         self.assertEqual(unified_strdate('July 15th, 2013'), '20130715') | ||||
|         self.assertEqual(unified_strdate('September 1st, 2013'), '20130901') | ||||
|         self.assertEqual(unified_strdate('Sep 2nd, 2013'), '20130902') | ||||
|         self.assertEqual(unified_strdate('November 3rd, 2019'), '20191103') | ||||
|         self.assertEqual(unified_strdate('October 23rd, 2005'), '20051023') | ||||
|  | ||||
|     def test_unified_timestamps(self): | ||||
|         self.assertEqual(unified_timestamp('December 21, 2010'), 1292889600) | ||||
|   | ||||
| @@ -1718,13 +1718,16 @@ DATE_FORMATS = ( | ||||
|     '%B %d %Y', | ||||
|     '%B %dst %Y', | ||||
|     '%B %dnd %Y', | ||||
|     '%B %drd %Y', | ||||
|     '%B %dth %Y', | ||||
|     '%b %d %Y', | ||||
|     '%b %dst %Y', | ||||
|     '%b %dnd %Y', | ||||
|     '%b %drd %Y', | ||||
|     '%b %dth %Y', | ||||
|     '%b %dst %Y %I:%M', | ||||
|     '%b %dnd %Y %I:%M', | ||||
|     '%b %drd %Y %I:%M', | ||||
|     '%b %dth %Y %I:%M', | ||||
|     '%Y %m %d', | ||||
|     '%Y-%m-%d', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user