Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cdcdcdcdcdcd/PyTricks
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: brennerm/PyTricks
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 14 commits
  • 45 files changed
  • 9 contributors

Commits on Oct 5, 2018

  1. Configuration menu
    Copy the full SHA
    dc2d1e1 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2018

  1. Merge pull request brennerm#93 from razinc/patch-1

    Added example for list type of variable.
    brennerm authored Dec 20, 2018
    Configuration menu
    Copy the full SHA
    18996bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2e806be View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d903d8a View commit details
    Browse the repository at this point in the history
  4. add CI configuration

    brennerm committed Dec 20, 2018
    Configuration menu
    Copy the full SHA
    ae6bef2 View commit details
    Browse the repository at this point in the history
  5. add build status to README

    brennerm committed Dec 20, 2018
    Configuration menu
    Copy the full SHA
    62f8667 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2019

  1. Create boolfast.py (brennerm#94)

    * Create boolfast.py
    * Update CONTRIBUTORS
    ofek authored and brennerm committed Feb 16, 2019
    Configuration menu
    Copy the full SHA
    29e43dc View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2019

  1. Add a new method to copy a list (brennerm#95)

    * Add a way to copy a list by adding an empty list.
    
    * Add using the `copy` module for python2.
    
    * Update comment to make it clear comparing to which method it performs faster.
    Iulian Gulea authored and brennerm committed Sep 5, 2019
    Configuration menu
    Copy the full SHA
    6e161f3 View commit details
    Browse the repository at this point in the history
  2. Add "raise to power" operator. (brennerm#96)

    Iulian Gulea authored and brennerm committed Sep 5, 2019
    Configuration menu
    Copy the full SHA
    5a00dc0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    be04055 View commit details
    Browse the repository at this point in the history
  4. Update flattenlist.py3 (brennerm#100)

    fix the bugs
    nosuggest authored and brennerm committed Sep 5, 2019
    Configuration menu
    Copy the full SHA
    7b82267 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2019

  1. Fix typo (brennerm#104)

    pjpjq authored and brennerm committed Nov 4, 2019
    Configuration menu
    Copy the full SHA
    e778c9c View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2020

  1. Make this example more meaningful/fix bug (brennerm#108)

    By doing:
    
    ```
    @contextlib.contextmanager
    def unlock(resource):
        resource = 'unlocked'
        ...
    ```
    We don't really change  the `resource` that is passed in. Because Python is pass by object reference, doing a re-assignment operation does not actually change the `resource` i.e. `resource = 'unlocked'` does not really work. Furthermore, the `resource` variable, with which the `unlock` function is called, is a string; strings are immutable; thus, we need to pass in a mutable data type as the `resource` to be able to demonstrate the resource's "lock state" changing. While we could have used a simple "box" tactic i.e. `resource = ['locked']`, this seemed to distract from the goal of the example. Consequently, it seemed using a small class might be clearer without detracting from the example's value.
    bhelabhav authored Nov 18, 2020
    Configuration menu
    Copy the full SHA
    2c6571f View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2020

  1. docs: fix simple typo, recieves -> receives (brennerm#109)

    There is a small typo in metatable.py.
    
    Should read `receives` rather than `recieves`.
    timgates42 authored Dec 24, 2020
    Configuration menu
    Copy the full SHA
    cae22a0 View commit details
    Browse the repository at this point in the history
Loading