Custom Query (121 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 121)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#13 fixed Windows install broken xi anonymous

Reported by anonymous, 7 years ago.

Description

None of the source files install except the EGG-INFO directory.

C:\>easy_install -Z PyYAML
Searching for PyYAML
Reading http://www.python.org/pypi/PyYAML/
Reading http://pyyaml.org/wiki/PyYAML
Best match: PyYAML 3.01
Downloading http://pyyaml.org/download/pyyaml/PyYAML-3.01.win32.exe
Processing PyYAML-3.01.win32.exe
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/resolver.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/parser.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/scanner.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/error.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/composer.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/loader.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/events.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/dumper.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/tokens.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/serializer.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/constructor.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/representer.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/__init__.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/nodes.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/reader.py
WARNING: can't process home/xi/lib/python2.4/site-packages/yaml/emitter.py
creating 'c:\docume~1\user\locals~1\temp\easy_install-wfs0iv\PyYAML-3.01-py2.4-w
in32.egg' and adding 'c:\docume~1\user\locals~1\temp\easy_install-wfs0iv\PyYAML-
3.01-py2.4-win32.egg.tmp' to it
creating c:\python24\lib\site-packages\PyYAML-3.01-py2.4-win32.egg
Extracting PyYAML-3.01-py2.4-win32.egg to c:\python24\lib\site-packages
Adding PyYAML 3.01 to easy-install.pth file

Installed c:\python24\lib\site-packages\pyyaml-3.01-py2.4-win32.egg
Processing dependencies for PyYAML

C:\>
#24 worksforme dictionaries without at least one list element as values seem not to work xi anonymous

Reported by anonymous, 7 years ago.

Description
>>> print yaml.dump({'name': 'Silenthand Olleander', 'race': 'Human', 'traits': 1})
{traits: 1, race: Human, name: Silenthand Olleander}
>>> print yaml.dump({'name': 'Silenthand Olleander', 'race': 'Human', 'traits': [1,2]})

traits: [1, 2]
race: Human
name: Silenthand Olleander

it seems without a list as at least one value element in dict the dump is not working properly

#27 worksforme yaml.dump seems to be broken xi anonymous

Reported by anonymous, 7 years ago.

Description

I may be missing something here, but this seems to be broken:

Example that works:

>>> print yaml.dump({'name': "The Cloak 'Colluin'", 'depth': 5, 'rarity': 45, 'weight': 10, 'cost': 50000, 'flags': ['INT', 'WIS', 'SPEED', 'STEALTH']})
cost: 50000
depth: 5
flags: [INT, WIS, SPEED, STEALTH]
name: The Cloak 'Colluin'
rarity: 45
weight: 10

Portion of above example:

>>> print yaml.dump({'name': "The Cloak 'Colluin'", 'depth': 5})
{depth: 5, name: The Cloak 'Colluin'}

I would expect to get:

depth: 5
name: The Cloak 'Colluin'
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Note: See TracQuery for help on using queries.