\n",
+ "\n",
+ " Standard YAML tags | \n",
+ " | \n",
+ "
\n",
+ "\n",
+ "!!null | \n",
+ "None | \n",
+ "
\n",
+ "\n",
+ "!!bool | \n",
+ "bool | \n",
+ "
\n",
+ "\n",
+ "!!int | \n",
+ "int or long (int in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!float | \n",
+ "float | \n",
+ "
\n",
+ "\n",
+ "!!binary | \n",
+ "str (bytes in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!timestamp | \n",
+ "datetime.datetime | \n",
+ "
\n",
+ "\n",
+ "!!omap , !!pairs | \n",
+ "list of pairs | \n",
+ "
\n",
+ "\n",
+ "!!set | \n",
+ "set | \n",
+ "
\n",
+ "\n",
+ "!!str | \n",
+ "str or unicode (str in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!seq | \n",
+ "list | \n",
+ "
\n",
+ "\n",
+ "!!map | \n",
+ "dict | \n",
+ "
\n",
+ "\n",
+ " Python-specific tags | \n",
+ " | \n",
+ "
\n",
+ "\n",
+ "!!python/none | \n",
+ "None | \n",
+ "
\n",
+ "\n",
+ "!!python/bool | \n",
+ "bool | \n",
+ "
\n",
+ "\n",
+ "!!python/bytes | \n",
+ "(bytes in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!python/str | \n",
+ "str (str in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!python/unicode | \n",
+ "unicode (str in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!python/int | \n",
+ "int | \n",
+ "
\n",
+ "\n",
+ "!!python/long | \n",
+ "long (int in Python 3) | \n",
+ "
\n",
+ "\n",
+ "!!python/float | \n",
+ "float | \n",
+ "
\n",
+ "\n",
+ "!!python/complex | \n",
+ "complex | \n",
+ "
\n",
+ "\n",
+ "!!python/list | \n",
+ "list | \n",
+ "
\n",
+ "\n",
+ "!!python/tuple | \n",
+ "tuple | \n",
+ "
\n",
+ "\n",
+ "!!python/dict | \n",
+ "dict | \n",
+ "
\n",
+ "\n",
+ " Complex Python tags | \n",
+ " | \n",
+ "
\n",
+ "\n",
+ "!!python/name:module.name | \n",
+ "module.name | \n",
+ "
\n",
+ "\n",
+ "!!python/module:package.module | \n",
+ "package.module | \n",
+ "
\n",
+ "\n",
+ "!!python/object:module.cls | \n",
+ "module.cls instance | \n",
+ "
\n",
+ "\n",
+ "!!python/object/new:module.cls | \n",
+ "module.cls instance | \n",
+ "
\n",
+ "\n",
+ "!!python/object/apply:module.f | \n",
+ "value of f(...) | \n",
+ "
\n",
+ "\n",
+ "