This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_nested_choice(): | |
schema = xsd.Schema(load_xml(""" | |
<?xml version="1.0"?> | |
<schema xmlns="http://www.w3.org/2001/XMLSchema" | |
xmlns:tns="http://tests.python-zeep.org/" | |
targetNamespace="http://tests.python-zeep.org/" | |
elementFormDefault="qualified"> | |
<element name="container"> | |
<complexType> | |
<sequence> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Symfony\Bundle\AsseticBundle\Composer; | |
use Symfony\Component\Process\PhpExecutableFinder; | |
use Symfony\Component\Process\Process; | |
class ScriptHandler | |
{ | |
public static function dumpAssets($event) |