mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-10-30 03:27:07 +00:00 
			
		
		
		
	 b5e5271adf
			
		
	
	
		b5e5271adf
		
			
		
	
	
	
	
		
			
			## Summary This is a follow-up to #15726, #15778, and #15794 to preserve the triple quote and prefix flags in plain strings, bytestrings, and f-strings. I also added a `StringLiteralFlags::without_triple_quotes` method to avoid passing along triple quotes in rules like SIM905 where it might not make sense, as discussed [here](https://github.com/astral-sh/ruff/pull/15726#discussion_r1930532426). ## Test Plan Existing tests, plus many new cases in the `generator::tests::quote` test that should cover all combinations of quotes and prefixes, at least for simple string bodies. Closes #7799 when combined with #15694, #15726, #15778, and #15794. --------- Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			626 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			626 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "ruff_python_codegen"
 | |
| version = "0.0.0"
 | |
| publish = false
 | |
| authors = { workspace = true }
 | |
| edition = { workspace = true }
 | |
| rust-version = { workspace = true }
 | |
| homepage = { workspace = true }
 | |
| documentation = { workspace = true }
 | |
| repository = { workspace = true }
 | |
| license = { workspace = true }
 | |
| 
 | |
| [lib]
 | |
| doctest = false
 | |
| 
 | |
| [dependencies]
 | |
| ruff_python_ast = { workspace = true }
 | |
| ruff_python_literal = { workspace = true }
 | |
| ruff_python_parser = { workspace = true }
 | |
| ruff_source_file = { workspace = true }
 | |
| ruff_text_size = { workspace = true }
 | |
| 
 | |
| [dev-dependencies]
 | |
| test-case = { workspace = true }
 | |
| 
 | |
| [lints]
 | |
| workspace = true
 | |
| 
 |