This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2010年04月28日 01:31 by janssen, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg104393 - (view) | Author: Bill Janssen (janssen) * (Python committer) | Date: 2010年04月28日 01:31 | |
Take a look at the first line of make_id(). What does that comment mean? Is the wrong line commented out?
def make_id(str, add_num=True):
#str = str.replace(".", "_") # colons are allowed
|
|||
| msg116575 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2010年09月16日 16:59 | |
The line in question has been like that since r42847 i.e. when the file came into existence. |
|||
| msg132226 - (view) | Author: Mark Mc Mahon (markm) * | Date: 2011年03月26日 10:24 | |
Per: http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx """The Identifier data type is a text string. Identifiers may contain the ASCII characters A-Z (a-z), digits, underscores (_), or periods (.). However, every identifier must begin with either a letter or an underscore.""" So the spec would say that colons are NOT allowed. Editing some entries in the File table of an MSI (using Orca from the MSI SDK) and running the validation confirms that. All the following were flagged as errors during validation: 'KDiff3EXE;"ASDF@#$', 'chmFile-', 'pdfFile(', 'hgbook]', 'TortoisePlinkEXE]', 'Hg.Cämd', 'merg:epatterns.rc' I think that this issue should be fixed when issue2694 is fixed. (I would like to put together some tests and patch for that :) |
|||
| msg132547 - (view) | Author: Mark Mc Mahon (markm) * | Date: 2011年03月29日 22:15 | |
This issue has been fixed when issue11696 was fixed. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:00 | admin | set | github: 52800 |
| 2011年03月30日 05:34:01 | loewis | set | status: open -> closed resolution: fixed |
| 2011年03月29日 22:15:59 | markm | set | messages: + msg132547 |
| 2011年03月26日 10:24:12 | markm | set | nosy:
+ markm messages: + msg132226 |
| 2010年09月16日 16:59:01 | BreamoreBoy | set | nosy:
+ BreamoreBoy messages: + msg116575 |
| 2010年04月28日 01:31:30 | janssen | create | |